Package | Description |
---|---|
ch.qos.logback.classic.filter | |
ch.qos.logback.core |
Contains the main classes of logback core.
|
ch.qos.logback.core.filter |
Contains base classes to the event filtering functionality of logback.
|
ch.qos.logback.core.spi |
Contains core functionnalities of logback, such as
|
Modifier and Type | Class and Description |
---|---|
class |
LevelFilter
A class that filters events by the level equality.
|
class |
ThresholdFilter
Filters events below the threshold level.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Filter<E>> |
AppenderBase.getCopyOfAttachedFiltersList() |
java.util.List<Filter<E>> |
UnsynchronizedAppenderBase.getCopyOfAttachedFiltersList() |
Modifier and Type | Method and Description |
---|---|
void |
AppenderBase.addFilter(Filter<E> newFilter) |
void |
UnsynchronizedAppenderBase.addFilter(Filter<E> newFilter) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMatcherFilter<E> |
class |
EvaluatorFilter<E>
The value of the
AbstractMatcherFilter.onMatch and AbstractMatcherFilter.onMismatch attributes is set
to FilterReply.NEUTRAL , so that a badly configured evaluator filter does
not disturb the functioning of the filter chain. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Filter<E>> |
FilterAttachable.getCopyOfAttachedFiltersList()
Get a copy of all the filters contained within this FilterAttachable
object.
|
java.util.List<Filter<E>> |
FilterAttachableImpl.getCopyOfAttachedFiltersList() |
Modifier and Type | Method and Description |
---|---|
void |
FilterAttachable.addFilter(Filter<E> newFilter)
Add a filter.
|
void |
FilterAttachableImpl.addFilter(Filter<E> newFilter)
Add a filter to end of the filter list.
|