LogTag

LogTag encapsulate a string tag and a bitmask. It a also have helpers to log entries with the given tag and mask.

Members

Functions

debug_
void debug_(string msg)

add a debug log entry with this tag

debugf
void debugf(string fmt, Args args)

add a formatted debug log entry with this tag

error
void error(string msg)

add a error log entry with this tag

errorf
void errorf(string fmt, Args args)

add a formatted error log entry with this tag

info
void info(string msg)

add a info log entry with this tag

infof
void infof(string fmt, Args args)

add a formatted info log entry with this tag

log
void log(Severity sev, string msg)

add a log entry with this tag

logf
void logf(Severity sev, string fmt, Args args)

add a formatted log entry with this tag

trace
void trace(string msg)

add a trace log entry with this tag

tracef
void tracef(string fmt, Args args)

add a formatted trace log entry with this tag

warning
void warning(string msg)

add a warning log entry with this tag

warningf
void warningf(string fmt, Args args)

add a formatted warning log entry with this tag

Variables

mask
uint mask;
Undocumented in source.
tag
string tag;
Undocumented in source.

Meta