A log handler that simply passes any log message it receives to a list of other handlers. Note that handlers should only be added at application startup, because the handle method is not synchronized to improve performance.
Constructs this multi-log handler using the given list of sub-handlers.
Adds a handler to this multi-handler's list of handlers.
Handles a log message by calling each of its sub-handlers' handle methods on it.
Handles a log message.
A log handler that simply passes any log message it receives to a list of other handlers. Note that handlers should only be added at application startup, because the handle method is not synchronized to improve performance.