Package | Description |
---|---|
ch.qos.logback.classic.filter | |
ch.qos.logback.classic.spi |
Contains core classes of logback classic.
|
ch.qos.logback.classic.turbo | |
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 | Method and Description |
---|---|
FilterReply |
LevelFilter.decide(ILoggingEvent event) |
FilterReply |
ThresholdFilter.decide(ILoggingEvent event) |
Modifier and Type | Method and Description |
---|---|
FilterReply |
TurboFilterList.getTurboFilterChainDecision(org.slf4j.Marker marker,
Logger logger,
Level level,
java.lang.String format,
java.lang.Object[] params,
java.lang.Throwable t)
Loop through the filters in the chain.
|
Modifier and Type | Field and Description |
---|---|
protected FilterReply |
MatchingFilter.onMatch |
protected FilterReply |
MatchingFilter.onMismatch |
Modifier and Type | Method and Description |
---|---|
FilterReply |
DuplicateMessageFilter.decide(org.slf4j.Marker marker,
Logger logger,
Level level,
java.lang.String format,
java.lang.Object[] params,
java.lang.Throwable t) |
FilterReply |
DynamicThresholdFilter.decide(org.slf4j.Marker marker,
Logger logger,
Level level,
java.lang.String s,
java.lang.Object[] objects,
java.lang.Throwable throwable)
This method first finds the MDC value for 'key'.
|
FilterReply |
MDCFilter.decide(org.slf4j.Marker marker,
Logger logger,
Level level,
java.lang.String format,
java.lang.Object[] params,
java.lang.Throwable t) |
FilterReply |
MarkerFilter.decide(org.slf4j.Marker marker,
Logger logger,
Level level,
java.lang.String format,
java.lang.Object[] params,
java.lang.Throwable t) |
FilterReply |
ReconfigureOnChangeFilter.decide(org.slf4j.Marker marker,
Logger logger,
Level level,
java.lang.String format,
java.lang.Object[] params,
java.lang.Throwable t) |
abstract FilterReply |
TurboFilter.decide(org.slf4j.Marker marker,
Logger logger,
Level level,
java.lang.String format,
java.lang.Object[] params,
java.lang.Throwable t)
Make a decision based on the multiple parameters passed as arguments.
|
FilterReply |
DynamicThresholdFilter.getOnHigherOrEqual()
Get the FilterReply when the effective level is higher or equal to the
level of current logging request
|
FilterReply |
DynamicThresholdFilter.getOnLower()
Get the FilterReply when the effective level is lower than the level of
current logging request
|
Modifier and Type | Method and Description |
---|---|
void |
DynamicThresholdFilter.setOnHigherOrEqual(FilterReply onHigherOrEqual) |
void |
DynamicThresholdFilter.setOnLower(FilterReply onLower) |
Modifier and Type | Method and Description |
---|---|
FilterReply |
AppenderBase.getFilterChainDecision(E event) |
FilterReply |
UnsynchronizedAppenderBase.getFilterChainDecision(E event) |
Modifier and Type | Field and Description |
---|---|
protected FilterReply |
AbstractMatcherFilter.onMatch |
protected FilterReply |
AbstractMatcherFilter.onMismatch |
Modifier and Type | Method and Description |
---|---|
FilterReply |
EvaluatorFilter.decide(E event) |
abstract FilterReply |
Filter.decide(E event)
If the decision is
, then the event will be
dropped. |
FilterReply |
AbstractMatcherFilter.getOnMatch() |
FilterReply |
AbstractMatcherFilter.getOnMismatch() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractMatcherFilter.setOnMatch(FilterReply reply) |
void |
AbstractMatcherFilter.setOnMismatch(FilterReply reply) |
Modifier and Type | Method and Description |
---|---|
FilterReply |
FilterAttachable.getFilterChainDecision(E event)
Loop through the filters in the chain.
|
FilterReply |
FilterAttachableImpl.getFilterChainDecision(E event)
Loop through the filters in the list.
|
static FilterReply |
FilterReply.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterReply[] |
FilterReply.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|