The filter admits two options StringToMatch and AcceptOnMatch. If there is a match between the value of the StringToMatch option and the message of the LoggingEvent, then the decide method returns ACCEPT if the AcceptOnMatch option value is true, if it is false then DENY is returned. If there is no match, NEUTRAL is returned.
See configuration files test6.xml, test7.xml, test8.xml, test9.xml, and test10.xml for examples of seeting up a StringMatchFilter
.
Public Types | |
typedef spi::Filter | BASE_CLASS |
Public Member Functions | |
StringMatchFilter () | |
virtual void | setOption (const LogString &option, const LogString &value) |
Set options. | |
void | setStringToMatch (const LogString &stringToMatch1) |
const LogString & | getStringToMatch () const |
void | setAcceptOnMatch (bool acceptOnMatch1) |
bool | getAcceptOnMatch () const |
FilterDecision | decide (const spi::LoggingEventPtr &event) const |
Returns NEUTRAL is there is no string match. |
typedef spi::Filter BASE_CLASS |
void setStringToMatch | ( | const LogString & | stringToMatch1 | ) | [inline] |
const LogString& getStringToMatch | ( | ) | const [inline] |
void setAcceptOnMatch | ( | bool | acceptOnMatch1 | ) | [inline] |
bool getAcceptOnMatch | ( | ) | const [inline] |
FilterDecision decide | ( | const spi::LoggingEventPtr & | event | ) | const [virtual] |