#include <appender.h>
Inheritance diagram for log4cplus::Appender:
Public Member Functions | |
Appender () | |
Appender (const log4cplus::helpers::Properties properties) | |
virtual | ~Appender () |
void | destructorImpl () |
virtual void | close ()=0 |
Release any resources allocated within the appender such as file handles, network connections, etc. | |
void | doAppend (const log4cplus::spi::InternalLoggingEvent &event) |
This method performs threshold checks and invokes filters before delegating actual logging to the subclasses specific AppenderSkeleton#append method. | |
virtual log4cplus::tstring | getName () |
Get the name of this appender. | |
virtual void | setName (const log4cplus::tstring &name) |
Set the name of this appender. | |
virtual void | setErrorHandler (std::auto_ptr< ErrorHandler > eh) |
Set the ErrorHandler for this Appender. | |
virtual ErrorHandler * | getErrorHandler () |
Return the currently set ErrorHandler for this Appender. | |
virtual void | setLayout (std::auto_ptr< Layout > layout) |
Set the layout for this appender. | |
virtual Layout * | getLayout () |
Returns the layout of this appender. | |
void | setFilter (log4cplus::spi::FilterPtr f) |
Set the filter chain on this Appender. | |
log4cplus::spi::FilterPtr | getFilter () const |
Get the filter chain on this Appender. | |
LogLevel | getThreshold () const |
Returns this appenders threshold LogLevel. | |
void | setThreshold (LogLevel th) |
Set the threshold LogLevel. | |
bool | isAsSevereAsThreshold (LogLevel ll) const |
Check whether the message LogLevel is below the appender's threshold. | |
Protected Member Functions | |
virtual void | append (const log4cplus::spi::InternalLoggingEvent &event)=0 |
Subclasses of AppenderSkeleton should implement this method to perform actual logging. | |
Protected Attributes | |
std::auto_ptr< Layout > | layout |
The layout variable does not need to be set if the appender implementation has its own layout. | |
log4cplus::tstring | name |
Appenders are named. | |
LogLevel | threshold |
There is no LogLevel threshold filtering by default. | |
log4cplus::spi::FilterPtr | filter |
The first filter in the filter chain. | |
std::auto_ptr< ErrorHandler > | errorHandler |
It is assumed and enforced that errorHandler is never null. | |
bool | closed |
Is this appender closed? |
Definition at line 63 of file appender.h.
|
|
|
|
|
Definition at line 73 of file appender.h. |
|
Subclasses of See also AppenderSkeleton.doAppend method. Implemented in log4cplus::NullAppender. |
|
Release any resources allocated within the appender such as file handles, network connections, etc. It is a programming error to append to a closed appender. Implemented in log4cplus::ConsoleAppender, log4cplus::FileAppender, log4cplus::DailyRollingFileAppender, log4cplus::NullAppender, and log4cplus::SocketAppender. |
|
|
|
This method performs threshold checks and invokes filters before delegating actual logging to the subclasses specific AppenderSkeleton#append method.
|
|
Return the currently set ErrorHandler for this Appender.
|
|
Get the filter chain on this Appender.
Definition at line 138 of file appender.h. |
|
Returns the layout of this appender. The value may be NULL. This class owns the returned pointer. |
|
Get the name of this appender. The name uniquely identifies the appender. |
|
Returns this appenders threshold LogLevel. See the setThreshold method for the meaning of this option. Definition at line 144 of file appender.h. References log4cplus::LogLevel. |
|
Check whether the message LogLevel is below the appender's threshold.
If there is no threshold set, then the return value is always Definition at line 161 of file appender.h. References log4cplus::NOT_SET_LOG_LEVEL. |
|
Set the ErrorHandler for this Appender.
|
|
Set the filter chain on this Appender.
Definition at line 133 of file appender.h. |
|
Set the layout for this appender. Note that some appenders have their own (fixed) layouts or do not use one. For example, the SocketAppender ignores the layout set here. |
|
Set the name of this appender. The name is used by other components to identify this appender. |
|
Set the threshold LogLevel. All log events with lower LogLevel than the threshold LogLevel are ignored by the appender. In configuration files this option is specified by setting the value of the Threshold option to a LogLevel string, such as "DEBUG", "INFO" and so on. Definition at line 154 of file appender.h. |
|
Is this appender closed?
Definition at line 193 of file appender.h. |
|
It is assumed and enforced that errorHandler is never null.
Definition at line 190 of file appender.h. |
|
The first filter in the filter chain.
Set to Definition at line 187 of file appender.h. |
|
The layout variable does not need to be set if the appender implementation has its own layout.
Definition at line 177 of file appender.h. |
|
Appenders are named.
Definition at line 180 of file appender.h. |
|
There is no LogLevel threshold filtering by default.
Definition at line 183 of file appender.h. |