public interface PaxFilter
| Modifier and Type | Field and Description |
|---|---|
static int |
ACCEPT
The log event must be logged immediately without consulting with
the remaining filters, if any, in the chain.
|
static int |
DENY
The log event must be dropped immediately without consulting
with the remaining filters, if any, in the chain.
|
static int |
NEUTRAL
This filter is neutral with respect to the log event.
|
| Modifier and Type | Method and Description |
|---|---|
int |
doFilter(PaxLoggingEvent event)
If the decision is
DENY, then the event will be
dropped. |
static final int DENY
static final int NEUTRAL
static final int ACCEPT
int doFilter(PaxLoggingEvent event)
If the decision is DENY, then the event will be
dropped. If the decision is NEUTRAL, then the next
filter, if any, will be invoked. If the decision is ACCEPT then
the event will be logged without consulting with other filters in
the chain.
event - The LoggingPaxLoggingEventEvent to decide upon.Copyright © 2006-2015 OPS4J - Open Participation Software for Java. All Rights Reserved.