public class LevelMatchFilter extends Filter
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(com.fr.third.apache.log4j.spi.LoggingEvent)
method returns Filter.ACCEPT
in case the AcceptOnMatch option value is set
to true
, if it is false
then Filter.DENY
is returned. If there is no match, Filter.NEUTRAL
is returned.
构造器和说明 |
---|
LevelMatchFilter() |
限定符和类型 | 方法和说明 |
---|---|
int |
decide(LoggingEvent event)
Return the decision of this filter.
|
boolean |
getAcceptOnMatch() |
java.lang.String |
getLevelToMatch() |
void |
setAcceptOnMatch(boolean acceptOnMatch) |
void |
setLevelToMatch(java.lang.String level) |
activateOptions, getNext, setNext
public void setLevelToMatch(java.lang.String level)
public java.lang.String getLevelToMatch()
public void setAcceptOnMatch(boolean acceptOnMatch)
public boolean getAcceptOnMatch()
public int decide(LoggingEvent event)
Filter.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 Filter.ACCEPT
if the
AcceptOnMatch property is set to true
. The
returned decision is Filter.DENY
if the
AcceptOnMatch property is set to false.