org.apache.log4j.spi
public interface: ErrorHandler [javadoc |
source]
All Implemented Interfaces:
OptionHandler
All Known Implementing Classes:
OnlyOnceErrorHandler, FallbackErrorHandler
Appenders may delegate their error handling to
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.
| Method from org.apache.log4j.spi.ErrorHandler Detail: |
public void error(String message)
This method is normally used to just print the error message
passed as a parameter. |
public void error(String message,
Exception e,
int errorCode)
|
public void error(String message,
Exception e,
int errorCode,
LoggingEvent event)
This method is invoked to handle the error. |
public void setAppender(Appender appender)
Set the appender for which errors are handled. This method is
usually called when the error handler is configured. |
public void setBackupAppender(Appender appender)
Set the appender to falkback upon in case of failure. |
public void setLogger(Logger logger)
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. |