Logs a message.
See http://dlang.org/phobos/std_format.html#format-string
Any input values needed for formatting
void test() nothrow { logInfo("Hello, World!"); logWarn("This may not be %s.", "good"); log!(LogLevel.info)("This is a %s.", "test"); }
See Implementation
Logs a message.