Struct simplelog::Config [] [src]

pub struct Config {
    pub time: Option<LogLevel>,
    pub level: Option<LogLevel>,
    pub target: Option<LogLevel>,
    pub location: Option<LogLevel>,
}

Configuration for the Loggers

All loggers print the message in the following form: 00:00:00 [LEVEL] crate::module: [lib.rs::100] your_message Every space delimited part except the actual message is optional.

Pass this struct to your logger to change when these information shall be logged. Every part can be enabled for a specific LogLevel and is then automatically enable for all lower levels as well.

The Result is that the logging gets more detailed the more verbose it gets. E.g. to have one part shown always use LogLevel::Error. But if you want to show the source line only on Trace use that. Passing None will completely disable the part.

Fields

At which level and below the current time shall be logged

At which level and below the level itself shall be logged

At which level and below the target shall be logged

At which level and below a source code reference shall be logged

Trait Implementations

impl Debug for Config
[src]

Formats the value using the given formatter.

impl Clone for Config
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Config
[src]

impl PartialEq for Config
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Config
[src]

impl Default for Config
[src]

Returns the "default value" for a type. Read more