Enum flexi_logger::FlexiLoggerError [] [src]

pub enum FlexiLoggerError {
    BadDirectory,
    Io(Error),
    Log(SetLoggerError),
}

Describes errors in the initialization of flexi_logger.

Variants

"Log cannot be written, most likely due to permission errors on OS level"

"Log cannot be written because the configured output directory is not accessible"

[]

"Logger initialization failed"

Trait Implementations

impl Debug for FlexiLoggerError
[src]

[]

Formats the value using the given formatter.

impl Display for FlexiLoggerError
[src]

[]

Formats the value using the given formatter. Read more

impl Error for FlexiLoggerError
[src]

[]

A short description of the error. Read more

[]

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

impl From<SetLoggerError> for FlexiLoggerError
[src]

[]

Performs the conversion.

impl From<Error> for FlexiLoggerError
[src]

[]

Performs the conversion.