[][src]Struct simplelog::Config

pub struct Config {
    pub time: Option<Level>,
    pub level: Option<Level>,
    pub thread: Option<Level>,
    pub target: Option<Level>,
    pub location: Option<Level>,
    pub time_format: Option<&'static str>,
    pub offset: FixedOffset,
    pub filter_allow: Option<&'static [&'static str]>,
    pub filter_ignore: Option<&'static [&'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

time: Option<Level>

At which level and below the current time shall be logged

level: Option<Level>

At which level and below the level itself shall be logged

thread: Option<Level>

At which level and below the thread id shall be logged. Default DEBUG

target: Option<Level>

At which level and below the target shall be logged

location: Option<Level>

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

time_format: Option<&'static str>

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

offset: FixedOffset

Chrono Offset used for logging time (default is UTC)

filter_allow: Option<&'static [&'static str]>

Allowed module filters. If specified, only records from modules starting with one of these entries will be printed

For example, filter_allow: Some(&["tokio::uds"]) would allow only logging from the tokio crates uds module.

filter_ignore: Option<&'static [&'static str]>

Denied module filters. If specified, records from modules starting with one of these entries will be ignored

For example, filter_ignore: Some(&["tokio::uds"]) would deny logging from the tokio crates uds module.

Trait Implementations

impl Eq for Config[src]

impl PartialEq<Config> for Config[src]

impl Copy for Config[src]

impl Clone for Config[src]

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

Performs copy-assignment from source. Read more

impl Default for Config[src]

impl Debug for Config[src]

Auto Trait Implementations

impl Send for Config

impl Sync for Config

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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