1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
use crate::log_specification::LogSpecification;
use thiserror::Error;
#[non_exhaustive]
#[derive(Error, Debug)]
pub enum FlexiLoggerError {
#[error("Chosen reset not possible")]
Reset,
#[error("Method not possible because no file logger is configured")]
NoFileLogger,
#[error("Log file cannot be written because the specified path is not a directory")]
OutputBadDirectory,
#[error("Log file cannot be written because the specified path is a directory")]
OutputBadFile,
#[error("Spawning the cleanup thread failed.")]
OutputCleanupThread(std::io::Error),
#[error(
"Log cannot be written, e.g. because the configured output directory is not accessible"
)]
OutputIo(#[from] std::io::Error),
#[error("Filesystem notifications for the specfile or the log file could not be set up")]
#[cfg(feature = "notify")]
Notify(#[from] notify::Error),
#[error("Parsing the configured logspec toml-file failed")]
#[cfg(feature = "specfile_without_notification")]
SpecfileToml(#[from] toml::de::Error),
#[error("Specfile cannot be accessed or created")]
#[cfg(feature = "specfile_without_notification")]
SpecfileIo(std::io::Error),
#[error("Specfile has an unsupported extension")]
#[cfg(feature = "specfile_without_notification")]
SpecfileExtension(&'static str),
#[error("Invalid level filter")]
LevelFilter(String),
#[error("Failed to parse log specification: {0}")]
Parse(String, LogSpecification),
#[error("Logger initialization failed")]
Log(#[from] log::SetLoggerError),
#[error("Some synchronization object is poisoned")]
Poison,
#[error("Palette parsing failed")]
Palette(#[from] std::num::ParseIntError),
#[cfg(feature = "async")]
#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
#[error("Logger is shut down")]
Shutdown(#[from] crossbeam_channel::SendError<Vec<u8>>),
#[cfg(feature = "trc")]
#[error("Tracing initialization failed")]
TracingSetup(#[from] tracing::subscriber::SetGlobalDefaultError),
}
impl From<std::convert::Infallible> for FlexiLoggerError {
fn from(_other: std::convert::Infallible) -> FlexiLoggerError {
unreachable!("lkjl,mnkjiu")
}
}