Enum flexi_logger::FlexiLoggerError [−][src]
pub enum FlexiLoggerError {
Show 15 variants
Reset,
OutputBadDirectory,
OutputBadFile,
OutputCleanupThread(Error),
OutputIo(Error),
SpecfileNotify(Error),
SpecfileToml(Error),
SpecfileIo(Error),
SpecfileExtension(&'static str),
LevelFilter(String),
Parse(String, LogSpecification),
Log(SetLoggerError),
Poison,
Palette(ParseIntError),
Shutdown(SendError<Vec<u8>>),
}Expand description
Describes errors in the initialization of flexi_logger.
Variants
Reset not possible because not file logger is configured.
Log file cannot be written because the specified path is not a directory.
Log file cannot be written because the specified path is a directory.
Spawning the cleanup thread failed.
This error can safely be avoided with Logger::cleanup_in_background_thread(false).
Tuple Fields of OutputCleanupThread
0: ErrorLog cannot be written, e.g. because the configured output directory is not accessible.
Tuple Fields of OutputIo
0: ErrorFilesystem notifications for the specfile could not be set up.
Tuple Fields of SpecfileNotify
0: ErrorParsing the configured logspec toml-file failed.
Tuple Fields of SpecfileToml
0: ErrorSpecfile cannot be accessed or created.
Tuple Fields of SpecfileIo
0: ErrorSpecfile has an unsupported extension.
Tuple Fields of SpecfileExtension
0: &'static strInvalid level filter.
Tuple Fields of LevelFilter
0: StringFailed to parse log specification.
The String contains a description of the error, the second parameter
contains the resulting LogSpecification object
Tuple Fields of Parse
0: String1: LogSpecificationLogger initialization failed.
Tuple Fields of Log
Some synchronization object is poisoned.
Palette parsing failed
Tuple Fields of Palette
async only.Logger is shut down.
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.