Struct simplelog::Config[][src]

pub struct Config {
    pub time: Option<Level>,
    pub level: Option<Level>,
    pub target: Option<Level>,
    pub location: Option<Level>,
    pub time_format: Option<&'static str>,
}

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 Level 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 Level::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

A chrono strftime string. See: https://docs.rs/chrono/0.4.0/chrono/format/strftime/index.html#specifiers

Trait Implementations

impl Debug for Config
[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

impl Send for Config

impl Sync for Config