Function logCritical
Logs a message.
Prototype
void logCritical(string file, int 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");
}
Authors
Sönke Ludwig
Copyright
© 2012-2014 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.