Struct log::MaxLogLevelFilter [-]  [+] [src]

pub struct MaxLogLevelFilter(_);

A token providing read and write access to the global maximum log level filter.

The maximum log level is used as an optimization to avoid evaluating log messages that will be ignored by the logger. Any message with a level higher than the maximum log level filter will be ignored. A logger should make sure to keep the maximum log level filter in sync with its current configuration.

Methods

impl MaxLogLevelFilter

fn get(&self) -> LogLevelFilter

Gets the current maximum log level filter.

fn set(&self, level: LogLevelFilter)

Sets the maximum log level.

Trait Implementations

impl Debug for MaxLogLevelFilter

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