Struct ckb_logger_config::Config[][src]

pub struct Config {
    pub filter: Option<String>,
    pub color: bool,
    pub file: PathBuf,
    pub log_dir: PathBuf,
    pub log_to_file: bool,
    pub log_to_stdout: bool,
    pub emit_sentry_breadcrumbs: Option<bool>,
    pub extra: HashMap<String, ExtraLoggerConfig>,
}

The whole CKB logger configuration.

This struct is used to build Logger.

Include configurations of the main logger and any number of extra loggers.

Fields

filter: Option<String>

An optional string which is used to build env_logger::Filter for the main logger.

If the value is None, no env_logger::Filter will be used.

color: bool

Colorize the output which was written into the stdout.

file: PathBuf

The log file of the main loggger.

log_dir: PathBuf

The directory where to store all log files.

log_to_file: bool

Output the log records of the main logger into a file or not.

log_to_stdout: bool

Output the log records of the main logger into the stdout or not.

emit_sentry_breadcrumbs: Option<bool>

An optional bool to control whether or not emit Sentry Breadcrumbs.

if the value is None, not emit Sentry Breadcrumbs.

extra: HashMap<String, ExtraLoggerConfig>

Add extra loggers.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

impl<'de> Deserialize<'de> for Config[src]

impl Serialize for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.