A constructor for the MultiLogger Logger.
This method inserts a new Logger into the MultiLogger.
This method removes a Logger from the MultiLogger.
This member holds all Loggers stored in the MultiLogger.
LogEntry is a aggregation combining all information associated with a log message. This aggregation will be passed to the method writeLogMsg.
A custom logger must implement this method in order to work in a MultiLogger and ArrayLogger.
Logs a part of the log message.
Signals that the message has been written and no more calls to logMsgPart follow.
The LogLevel determines if the log call are processed or dropped by the Logger. In order for the log call to be processed the LogLevel of the log call must be greater or equal to the LogLevel of the logger.
This delegate is called in case a log message with LogLevel.fatal gets logged.
This method allows forwarding log entries from one logger to another.
This template provides the log functions for the Logger class with the LogLevel encoded in the function name.
This method logs data with the LogLevel of the used Logger.
This function logs data to the used Logger with a specific LogLevel.
This function logs data to the used Logger depending on a explicitly passed condition with the LogLevel of the used Logger.
This function logs data to the used Logger with the LogLevel of the used Logger.
This function logs data to the used Logger with a specific LogLevel and depending on a condition in a printf-style manner.
This function logs data to the used Logger with a specific LogLevel in a printf-style manner.
This function logs data to the used Logger depending on a condition with the LogLevel of the used Logger in a printf-style manner.
This method logs data to the used Logger with the LogLevel of the this Logger in a printf-style manner.
MultiLogger logs to multiple Logger. The Loggers are stored in an Logger[] in their order of insertion.
Every data logged to this MultiLogger will be distributed to all the Loggers inserted into it. This MultiLogger implementation can hold multiple Loggers with the same name. If the method removeLogger is used to remove a Logger only the first occurrence with that name will be removed.