pub enum PipeLoggerBuilderError {
RotateFileSizeTooSmall,
CountTooSmall,
IOError(Error),
FileIsDirectory(PathBuf),
}
Variants§
RotateFileSizeTooSmall
A valid rotated file size needs bigger than 1.
CountTooSmall
A valid count of log files needs bigger than 0.
IOError(Error)
std::io::Error.
FileIsDirectory(PathBuf)
A log file cannot be a directory. Wrap the absolutized log file.