DefaultLogger

DefaultLogger

The default logger logs using a pretty stock-standard (non-colored) message transformation and supports the basic levels of logging.

Constructors

this
this(string multiArgJoiner)

Constructs a new default logger

Members

Aliases

dbg
alias dbg = debug_

Alias for debug_

Functions

debug_
void debug_(TextType segments)

Logs the given message of an arbitrary amount of arguments and specifically sets the level to DEBUG

error
void error(TextType segments)

Logs the given message of an arbitrary amount of arguments and specifically sets the level to ERROR

info
void info(TextType segments)

Logs the given message of an arbitrary amount of arguments and specifically sets the level to INFO

warn
void warn(TextType segments)

Logs the given message of an arbitrary amount of arguments and specifically sets the level to WARN

Inherited Members

From BasicLogger

setLevel
void setLevel(Level level)

Sets the log level

getLevel
Level getLevel()

Obtains the current log level

Meta