Enum log4rs::Error [] [src]

pub enum Error {
    Log(SetLoggerError),
    Log4rs(Box<Error + Sync + Send>),
}

An error initializing the logging framework from a file.

Variants

An error from the log crate

A fatal error initializing the log4rs config.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl From<SetLoggerError> for Error
[src]

[src]

Performs the conversion.

impl From<Box<Error + Sync + Send>> for Error
[src]

[src]

Performs the conversion.