[][src]Struct simplelog::Config

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

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

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

Trait Implementations

impl Copy for Config[src]

impl Default for Config[src]

impl Eq 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 PartialEq<Config> for Config[src]

impl Debug for Config[src]

Auto Trait Implementations

impl Unpin for Config

impl Sync for Config

impl Send for Config

impl UnwindSafe for Config

impl RefUnwindSafe for Config

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<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> Borrow<T> for T where
    T: ?Sized
[src]

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

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