log

Logs a message.

Parameters

level

The log level for the logged message

fmt S
args T

Any input values needed for formatting

Examples

void test() nothrow
{
	logInfo("Hello, World!");
	logWarn("This may not be %s.", "good");
	log!(LogLevel.info)("This is a %s.", "test");
}

Meta