org.apache.log4j.spi.ErrorHandler |
Known Indirect Subclasses |
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.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This method is normally used to just print the error message
passed as a parameter.
| |||||||||||
Equivalent to the
error(String, Exception, int, LoggingEvent) with the the event parameteter set to
null . | |||||||||||
This method is invoked to handle the error.
| |||||||||||
Set the appender for which errors are handled.
| |||||||||||
Set the appender to falkback upon in case of failure.
| |||||||||||
Add a reference to a logger to which the failing appender might
be attached to.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
org.apache.log4j.spi.OptionHandler
|
This method is normally used to just print the error message passed as a parameter.
Equivalent to the error(String, Exception, int, LoggingEvent)
with the the event parameteter set to
null
.
This method is invoked to handle the error.
message | The message assoicated with the error. |
---|---|
e | The Exption that was thrown when the error occured. |
errorCode | The error code associated with the error. |
event | The logging event that the failing appender is asked to log. |
Set the appender for which errors are handled. This method is usually called when the error handler is configured.
Set the appender to falkback upon in case of failure.
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.
logger | One of the loggers that will be searched for the failing appender in view of replacement. |
---|