[][src]Struct simplelog::SimpleLogger

pub struct SimpleLogger { /* fields omitted */ }

The SimpleLogger struct. Provides a very basic Logger implementation

Methods

impl SimpleLogger
[src]

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());

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 SharedLogger for SimpleLogger
[src]

Returns the set Level for this Logger Read more

Inspect the config of a running Logger Read more

Returns the logger as a Log trait object

impl Log for SimpleLogger
[src]

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

Logs the Record. Read more

Flushes any buffered records.

Auto Trait Implementations

impl Send for SimpleLogger

impl Sync for SimpleLogger

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more