A logger that prints into a file
A logger that prints to stderr
A logger that prints to stdout
Log messages severity
add a log entry with debug severity
add a log entry with error severity
add a log entry with info severity
add a log entry
add a log entry with trace severity
add a log entry with warning severity
An abstract logger. All log operations are synchronized by a global mutex. Implementations do not need to bother about thread safety.
The default severity
The installed logger. By default StdOutLogger. Assigning null re-assign the default
A mask for bypassing some messages. Should only be used in debug builds. by default 0xffffffff
The format string for log messages The entries are as follow: - %d: datetime (formatted according timeFormat) - %s: severity - %t: tag - %m: msg The default format string is defaultMsgFormat
Minimum Severity for message filtering. All messages with lower severity are filtered out. by default Severity.info.
The format string for date-time in log message The format of this string is the same as smjg.libs.util.datetime: http://pr.stewartsplace.org.uk/d/sutil/doc/datetimeformat.html
The default filter mask
the default format string for log messages
the default format string for date-time