pub trait SharedLogger: Log {
    fn level(&self) -> LevelFilter;
    fn config(&self) -> Option<&Config>;
    fn as_log(self: Box<Self>) -> Box<dyn Log>;
}
Expand description

Trait to have a common interface to obtain the Level of Loggers

Necessary for CombinedLogger to calculate the lowest used Level.

Required Methods

Returns the set Level for this Logger

Examples
let logger = SimpleLogger::new(LevelFilter::Info, Config::default());
println!("{}", logger.level());

Inspect the config of a running Logger

An Option is returned, because some Logger may not contain a Config

Examples
let logger = SimpleLogger::new(LevelFilter::Info, Config::default());
println!("{:?}", logger.config());

Returns the logger as a Log trait object

Implementors