public static class AppenderSkeleton.NoOpErrorHandler extends java.lang.Object implements ErrorHandler
Constructor and Description |
---|
NoOpErrorHandler() |
Modifier and Type | Method and Description |
---|---|
void |
error(java.lang.String message)
This method is normally used to just print the error message
passed as a parameter.
|
void |
error(java.lang.String message,
java.lang.Exception e,
int errorCode)
Equivalent to the
ErrorHandler.error(String, Exception, int,
LoggingEvent) with the the event parameter set to
null . |
void |
error(java.lang.String message,
java.lang.Exception e,
int errorCode,
LoggingEvent event)
This method is invoked to handle the error.
|
void |
setAppender(Appender appender)
Set the appender for which errors are handled.
|
void |
setBackupAppender(Appender appender)
Set the appender to fallback upon in case of failure.
|
void |
setLogger(Logger logger)
Add a reference to a logger to which the failing appender might
be attached to.
|
public void setLogger(Logger logger)
ErrorHandler
setLogger
in interface ErrorHandler
logger
- One of the loggers that will be searched for the failing
appender in view of replacement.public void error(java.lang.String message, java.lang.Exception e, int errorCode)
ErrorHandler
ErrorHandler.error(String, Exception, int,
LoggingEvent)
with the the event parameter set to
null
.error
in interface ErrorHandler
message
- The message associated with the error.e
- The Exception that was thrown when the error occurred.errorCode
- The error code associated with the error.public void error(java.lang.String message)
ErrorHandler
error
in interface ErrorHandler
message
- The message associated with the error.public void error(java.lang.String message, java.lang.Exception e, int errorCode, LoggingEvent event)
ErrorHandler
error
in interface ErrorHandler
message
- The message associated with the error.e
- The Exception that was thrown when the error occurred.errorCode
- The error code associated with the error.event
- The logging event that the failing appender is asked
to log.public void setAppender(Appender appender)
ErrorHandler
setAppender
in interface ErrorHandler
appender
- The appenderpublic void setBackupAppender(Appender appender)
ErrorHandler
setBackupAppender
in interface ErrorHandler
appender
- The backup appender