Public Member Functions | |
virtual void | setLogger (const LoggerPtr &logger)=0 |
virtual void | error (const String &message, helpers::Exception &e, int errorCode) const =0 |
virtual void | error (const String &message) const =0 |
virtual void | error (const String &message, helpers::Exception &e, int errorCode, const LoggingEventPtr &event) const =0 |
virtual void | setAppender (const AppenderPtr &appender)=0 |
virtual void | setBackupAppender (const AppenderPtr &appender)=0 |
ErrorHandlers
.Error handling is a particularly tedious to get right because by definition errors are hard to predict and to reproduce.
Please take the time to contact the author in case you discover that errors are not properly handled. You are most welcome to suggest new error handling policies or criticize existing policies.
|
This method is invoked to handle the error.
Implemented in OnlyOnceErrorHandler, and FallbackErrorHandler. |
|
This method is normally used to just print the error message passed as a parameter. Implemented in OnlyOnceErrorHandler, and FallbackErrorHandler. |
|
Equivalent to the error(const String&, helpers::Exception&, int, spi::LoggingEvent&) with the the event parameteter set to null. Implemented in OnlyOnceErrorHandler, and FallbackErrorHandler. |
|
Set the appender for which errors are handled. This method is usually called when the error handler is configured. Implemented in OnlyOnceErrorHandler, and FallbackErrorHandler. |
|
Set the appender to fallback upon in case of failure. Implemented in OnlyOnceErrorHandler, and FallbackErrorHandler. |
|
Add a reference to a logger to which the failing appender might be attached to. The failing appender will be searched and replaced only in the loggers you add through this method.
Implemented in OnlyOnceErrorHandler, and FallbackErrorHandler. |