Struct simplelog::WriteLogger [] [src]

pub struct WriteLogger<W: Write + Send + 'static> {
    // some fields omitted
}

The WriteLogger struct. Provides a Logger implementation for structs implementing Write, e.g. File

Methods

impl<W: Write + Send + 'static> WriteLogger<W>
[src]

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

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

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

Examples

let _ = WriteLogger::init(LogLevelFilter::Info, Config::default(), File::create("my_rust_bin.log").unwrap());

fn new(log_level: LogLevelFilter, config: Config, writable: W) -> Box<WriteLogger<W>>

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, Config and Write struct as arguments. They cannot be changed later on.

Examples

let file_logger = WriteLogger::new(LogLevelFilter::Info, Config::default(), File::create("my_rust_bin.log").unwrap());

Trait Implementations

impl<W: Write + Send + 'static> Log for WriteLogger<W>
[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<W: Write + Send + 'static> SharedLogger for WriteLogger<W>
[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