Function logDebugV
Logs a message.
void logDebugV(string file = __FILE__, int line = __LINE__, S, T...)
(
S fmt,
lazy T args
) nothrow;
Parameters
Name | Description |
---|---|
level | The log level for the logged message |
fmt | See http://dlang.org/phobos/std_format.html#format-string |
args | Any input values needed for formatting |
Example
void test() nothrow
{
logInfo("Hello, World!");
logWarn("This may not be %s.", "good");
log!(LogLevel .info)("This is a %s.", "test");
}