Struct simplelog::SimpleLogger [] [src]

pub struct SimpleLogger {
    // some fields omitted
}

The SimpleLogger struct. Provides a very basic Logger implementation

Methods

impl SimpleLogger
[src]

fn init(log_level: LogLevelFilter, config: Config) -> Result<()SetLoggerError>

init function. Globally initializes the SimpleLogger as the one and only used log facility.

Takes the desired LogLevel and Config as arguments. They cannot be changed later on. Fails if another Logger was already initialized.

Examples

let _ = SimpleLogger::init(LogLevelFilter::Info, Config::default());

fn new(log_level: LogLevelFilter, config: Config) -> Box<SimpleLogger>

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 aCombinedLogger`.

Takes the desired LogLevel and Config as arguments. They cannot be changed later on.

Examples

let simple_logger = SimpleLogger::new(LogLevelFilter::Info, Config::default());

Trait Implementations

impl Log for SimpleLogger
[src]

fn enabled(&self, metadata: &LogMetadata) -> bool

Determines if a log message with the specified metadata would be logged. Read more

fn log(&self, record: &LogRecord)

Logs the LogRecord. Read more

impl SharedLogger for SimpleLogger
[src]

fn level(&self) -> LogLevelFilter

Returns the set LogLevel for this Logger Read more

fn config(&self) -> Option<&Config>

Inspect the config of a running Logger Read more

fn as_log(self: Box<Self>) -> Box<Log>

Returns the logger as a Log trait object