Struct log4rs::filter::threshold::ThresholdFilter [] [src]

pub struct ThresholdFilter {
    // some fields omitted
}

A filter that rejects all events at a level below a provided threshold.

Methods

impl ThresholdFilter
[src]

fn new(level: LogLevelFilter) -> ThresholdFilter

Creates a new ThresholdFilter with the specified threshold.

Trait Implementations

impl Debug for ThresholdFilter
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Filter for ThresholdFilter
[src]

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

Filters a log event.