Enum flexi_logger::FlexiLoggerError[][src]

pub enum FlexiLoggerError {
    BadDirectory,
    Io(Error),
    Notify(Error),
    Toml(Error),
    Parse(String),
    Log(SetLoggerError),
}

Describes errors in the initialization of flexi_logger.

Variants

Log file cannot be written because the specified path is not a directory.

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

Error with fs-notifications for the specfile

The configured logspec file cannot be read

Some error occured during parsing

Logger initialization failed.

Trait Implementations

impl Debug for FlexiLoggerError
[src]

Formats the value using the given formatter. Read more

impl Display for FlexiLoggerError
[src]

Formats the value using the given formatter. Read more

impl Error for FlexiLoggerError
[src]

This method is soft-deprecated. 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.

impl From<Error> for FlexiLoggerError
[src]

Performs the conversion.

impl From<Error> for FlexiLoggerError
[src]

Performs the conversion.

Auto Trait Implementations