Struct simplelog::SimpleLogger
[−]
[src]
pub struct SimpleLogger { /* fields omitted */ }The SimpleLogger struct. Provides a very basic Logger implementation
Methods
impl SimpleLogger[src]
pub fn init(
log_level: LevelFilter,
config: Config
) -> Result<(), SetLoggerError>[src]
log_level: LevelFilter,
config: Config
) -> Result<(), SetLoggerError>
init function. Globally initializes the SimpleLogger as the one and only used log facility.
Takes the desired Level and Config as arguments. They cannot be changed later on.
Fails if another Logger was already initialized.
Examples
let _ = SimpleLogger::init(LevelFilter::Info, Config::default());
pub fn new(log_level: LevelFilter, config: Config) -> Box<SimpleLogger>[src]
allows to create a new logger, that can be independently used, no matter what is globally set.
no macros are provided for this case and you probably
dont want to use this function, but init(), if you dont want to build a CombinedLogger.
Takes the desired Level and Config as arguments. They cannot be changed later on.
Examples
let simple_logger = SimpleLogger::new(LevelFilter::Info, Config::default());
Trait Implementations
impl Log for SimpleLogger[src]
fn enabled(&self, metadata: &Metadata) -> bool[src]
Determines if a log message with the specified metadata would be logged. Read more
fn log(&self, record: &Record)[src]
Logs the Record. Read more
fn flush(&self)[src]
Flushes any buffered records.