Function logInfo

Logs a message.

Prototypes

void log(vibe.core.log.LogLevel level, string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logTrace(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logDebugV(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logDebug(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logDiagnostic(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logInfo(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logWarn(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logError(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.T args
) nothrow;

void logCritical(string file, int line, T...)(
  string fmt,
  auto ref cloneFunction.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

Examples

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

Authors

Sönke Ludwig

Copyright

© 2012-2013 RejectedSoftware e.K.

License

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