Enum log4rs::filter::Response
[−]
[src]
pub enum Response {
Accept,
Neutral,
Reject,
}The response returned by a filter.
Variants
AcceptAccept the log event.
It will be immediately passed to the appender, bypassing any remaining filters.
NeutralTake no action on the log event.
It will continue on to remaining filters or pass on to the appender if there are none remaining.
RejectReject the log event.