org.apache.log4j.varia

Class LevelMatchFilter

public class LevelMatchFilter extends Filter

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 LevelMatchFilter method returns ACCEPT in case the AcceptOnMatch option value is set to true, if it is false then DENY is returned. If there is no match, NEUTRAL is returned.

Since: 1.2

Author: Ceki Gülcü

Method Summary
intdecide(LoggingEvent event)
Return the decision of this filter.
booleangetAcceptOnMatch()
StringgetLevelToMatch()
voidsetAcceptOnMatch(boolean acceptOnMatch)
voidsetLevelToMatch(String level)

Method Detail

decide

public int decide(LoggingEvent event)
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.

getAcceptOnMatch

public boolean getAcceptOnMatch()

getLevelToMatch

public String getLevelToMatch()

setAcceptOnMatch

public void setAcceptOnMatch(boolean acceptOnMatch)

setLevelToMatch

public void setLevelToMatch(String level)
Copyright 2000-2005 Apache Software Foundation.