Enum flexi_logger::FlexiLoggerError
[−]
[src]
pub enum FlexiLoggerError {
BadDirectory,
Io(Error),
Log(SetLoggerError),
}Describes errors in the initialization of flexi_logger.
Variants
BadDirectoryLog file cannot be written because the specified path is not a directory.
Io(Error)Log cannot be written because the configured output directory is not accessible.
Log(SetLoggerError)Logger initialization failed.
Trait Implementations
impl Debug for FlexiLoggerError[src]
impl Display for FlexiLoggerError[src]
impl Error for FlexiLoggerError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<SetLoggerError> for FlexiLoggerError[src]
fn from(err: SetLoggerError) -> FlexiLoggerError
Performs the conversion.
impl From<Error> for FlexiLoggerError[src]
fn from(err: Error) -> FlexiLoggerError
Performs the conversion.