A static singleton class used to expose the logging mechanism.
Logging is provided through the use of a logging chain. When log is called, the logger iterates over each logger in the chain calling log on each individual logger.
log
Adds a new logger to the end of the logging chain.
Logs a message using each logger in the chain.
The sender of the message.
The message.
The level of the message.
Clears the logging chain.
Generated using TypeDoc
A static singleton class used to expose the logging mechanism.
Logging is provided through the use of a logging chain. When
log
is called, the logger iterates over each logger in the chain callinglog
on each individual logger.