org.jboss.logmanager.filters
Class LevelRangeFilter
java.lang.Object
org.jboss.logmanager.filters.LevelRangeFilter
- All Implemented Interfaces:
- Filter
public final class LevelRangeFilter
- extends Object
- implements Filter
Log only messages that fall within a level range.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LevelRangeFilter
public LevelRangeFilter(Level min,
boolean minInclusive,
Level max,
boolean maxInclusive)
- Create a new instance.
- Parameters:
min
- the minimum (least severe) level, inclusiveminInclusive
- true
if the min
value is inclusive, false
if it is exclusivemax
- the maximum (most severe) level, inclusivemaxInclusive
- true
if the max
value is inclusive, false
if it is exclusive
isLoggable
public boolean isLoggable(LogRecord record)
- Determine if a record is loggable.
- Specified by:
isLoggable
in interface Filter
- Parameters:
record
- the log record
- Returns:
true
if the record's level falls within the range specified for this instance
Copyright © 2009 JBoss, a division of Red Hat, Inc.