Inheritance diagram for log4cplus::spi::LogLevelRangeFilter:
Public Member Functions | |
LogLevelRangeFilter (const log4cplus::helpers::Properties &p, log4cplus::tstring &error) | |
virtual FilterResult | decide (const InternalLoggingEvent &event) const |
Return the decision of this filter. | |
Private Member Functions | |
void | init () |
Private Attributes | |
bool | acceptOnMatch |
Do we return ACCEPT when a match occurs. | |
LogLevel | logLevelMin |
LogLevel | logLevelMax |
The filter admits three options LogLevelMin, LogLevelMax and AcceptOnMatch.
If the LogLevel of the Logging event is not between Min and Max (inclusive), then DENY is returned.
If the Logging event LogLevel is within the specified range, then if AcceptOnMatch is true, ACCEPT is returned, and if AcceptOnMatch is false, NEUTRAL is returned.
If LogLevelMin
is not defined, then there is no minimum acceptable LogLevel (ie a LogLevel is never rejected for being too "low"/unimportant). If LogLevelMax
is not defined, then there is no maximum acceptable LogLevel (ie a LogLevel is never rejected for beeing too "high"/important).
Refer to the setThreshold method available to all
appenders for a more convenient way to filter out events by LogLevel.
Definition at line 212 of file filter.h.
bool log4cplus::spi::LogLevelRangeFilter::acceptOnMatch [private] |