vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Function logError

Logs a message.

void logError(string file = __FILE__, int line = __LINE__, S, T...) (
  S fmt,
  lazy T args
) nothrow;

Parameters

NameDescription
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 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.