Trait log4rs::filter::Filter [] [src]

pub trait Filter: Debug + Send + Sync + 'static {
    fn filter(&self, record: &LogRecord) -> Response;
}

The trait implemented by log4rs filters.

Filters are associated with appenders and limit the log events that will be sent to that appender.

Required Methods

fn filter(&self, record: &LogRecord) -> Response

Filters a log event.

Implementors