Apache log4cxx
Version 0.12.1
|
This is a very simple filter based on level matching. More...
#include <levelmatchfilter.h>
Public Types | |
typedef spi::Filter | BASE_CLASS |
![]() | |
enum | FilterDecision { DENY = -1 , NEUTRAL = 0 , ACCEPT = 1 } |
Public Member Functions | |
LevelMatchFilter () | |
virtual void | setOption (const LogString &option, const LogString &value) |
Set options. More... | |
void | setLevelToMatch (const LogString &levelToMatch) |
LogString | getLevelToMatch () const |
void | setAcceptOnMatch (bool acceptOnMatch1) |
bool | getAcceptOnMatch () const |
FilterDecision | decide (const spi::LoggingEventPtr &event) const |
Return the decision of this filter. More... | |
![]() | |
Filter () | |
log4cxx::spi::FilterPtr | getNext () const |
void | setNext (const log4cxx::spi::FilterPtr &newNext) |
void | activateOptions (log4cxx::helpers::Pool &p) |
Usually filters options become active when set. More... | |
void | setOption (const LogString &option, const LogString &value) |
Set option to value . More... | |
![]() | |
virtual | ~OptionHandler () |
![]() | |
virtual | ~Object () |
virtual bool | instanceof (const Class &clazz) const =0 |
virtual const void * | cast (const Class &clazz) const =0 |
This is a very simple filter based on level matching.
The filter admits two options LevelToMatch and AcceptOnMatch. If there is an exact match between the value of the LevelToMatch option and the level of the {LoggingEvent}, then the #decide method returns { spi::Filter#ACCEPT ACCEPT} in case the AcceptOnMatch option value is set to true
, if it is false
then spi::Filter#DENY DENY} is returned. If there is no match, spi::Filter#NEUTRAL NEUTRAL} is returned.
log4cxx::filter::LevelMatchFilter::LevelMatchFilter | ( | ) |
|
virtual |
Return the decision of this filter.
Returns NEUTRAL if the LevelToMatch option is not set or if there is not match. Otherwise, if there is a match, then the returned decision is ACCEPT if the AcceptOnMatch property is set to true
. The returned decision is DENY if the AcceptOnMatch property is set to false.
Implements log4cxx::spi::Filter.
|
inline |
LogString log4cxx::filter::LevelMatchFilter::getLevelToMatch | ( | ) | const |
|
inline |
void log4cxx::filter::LevelMatchFilter::setLevelToMatch | ( | const LogString & | levelToMatch | ) |
|
virtual |
Set options.
Implements log4cxx::spi::OptionHandler.