logInfo

Functions used for logging inside Thrift.

By default, the formatted messages are written to stdout/stderr, but this behavior can be overwritten by providing custom g_{Info, Error}LogSink handlers.

alias logInfo = logFormatted!g_infoLogSink

Examples

logInfo("An informative message.");
logError("Some error occurred: %s", e);

Meta