Struct simplelog::Config [] [src]

pub struct Config {
    pub time: LogLevelFilter,
    pub level: LogLevelFilter,
    pub target: LogLevelFilter,
    pub location: LogLevelFilter,
}
[]

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 LogLevelFilter::Error. But if you want to show the source line only on Trace use that.

Fields

time: LogLevelFilter
[]

At which level and below the current time shall be logged

level: LogLevelFilter
[]

At which level and below the level itself shall be logged

target: LogLevelFilter
[]

At which level and below the target shall be logged

location: LogLevelFilter
[]

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

Trait Implementations

impl Eq for Config
[src]

impl PartialEq for Config
[src]

fn eq(&self, __arg_0: &Config) -> bool[]

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

fn ne(&self, __arg_0: &Config) -> bool[]

This method tests for !=.

impl Copy for Config
[src]

impl Clone for Config
[src]

fn clone(&self) -> Config[]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0
[]

Performs copy-assignment from source. Read more

impl Debug for Config
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result[]

Formats the value using the given formatter.

impl Default for Config
[src]

fn default() -> Config[]

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