Apache log4cxx
Version 0.13.0
|
The OnlyOnceErrorHandler
implements log4cxx's default error handling policy which consists of emitting a message for the first error in an appender and ignoring all following errors.
More...
#include <onlyonceerrorhandler.h>
Public Member Functions | |
OnlyOnceErrorHandler () | |
void | setLogger (const LoggerPtr &logger) |
Does not do anything. More... | |
void | activateOptions (log4cxx::helpers::Pool &p) |
No options to activate. More... | |
void | setOption (const LogString &option, const LogString &value) |
Set option to value . More... | |
void | error (const LogString &message, const std::exception &e, int errorCode) const |
Prints the message and the stack trace of the exception on System.err . More... | |
void | error (const LogString &message, const std::exception &e, int errorCode, const spi::LoggingEventPtr &event) const |
Prints the message and the stack trace of the exception on System.err . More... | |
void | error (const LogString &message) const |
Print a the error message passed as parameter on System.err . More... | |
void | setAppender (const AppenderPtr &appender) |
Does not do anything. More... | |
void | setBackupAppender (const AppenderPtr &appender) |
Does not do anything. More... | |
Public Member Functions inherited from log4cxx::spi::ErrorHandler | |
virtual | ~ErrorHandler () |
Public Member Functions inherited from log4cxx::spi::OptionHandler | |
virtual | ~OptionHandler () |
Public Member Functions inherited from log4cxx::helpers::Object | |
virtual | ~Object () |
virtual bool | instanceof (const Class &clazz) const =0 |
virtual const void * | cast (const Class &clazz) const =0 |
The OnlyOnceErrorHandler
implements log4cxx's default error handling policy which consists of emitting a message for the first error in an appender and ignoring all following errors.
The error message is printed on System.err
.
This policy aims at protecting an otherwise working application from being flooded with error messages when logging fails
log4cxx::helpers::OnlyOnceErrorHandler::OnlyOnceErrorHandler | ( | ) |
|
virtual |
No options to activate.
Implements log4cxx::spi::OptionHandler.
|
virtual |
Prints the message and the stack trace of the exception on System.err
.
Implements log4cxx::spi::ErrorHandler.
|
virtual |
Prints the message and the stack trace of the exception on System.err
.
Implements log4cxx::spi::ErrorHandler.
|
virtual |
Print a the error message passed as parameter on System.err
.
Implements log4cxx::spi::ErrorHandler.
|
virtual |
Does not do anything.
Implements log4cxx::spi::ErrorHandler.
|
virtual |
Does not do anything.
Implements log4cxx::spi::ErrorHandler.
|
virtual |
Does not do anything.
Implements log4cxx::spi::ErrorHandler.
|
virtual |
Set option
to value
.
The handling of each option depends on the OptionHandler instance. Some options may become active immediately whereas other may be activated only when activateOptions is called.
Implements log4cxx::spi::OptionHandler.