Enum flexi_logger::Naming [−][src]
pub enum Naming { Timestamps, Numbers, }
Expand description
The naming convention for rotated log files.
With file rotation, the logs are written to a file with infix _rCURRENT
.
When rotation happens, the CURRENT log file will be renamed to a file with
another infix of the form "_r..."
. Naming
defines which other infix will be used.
Used in Logger::rotate
.
Variants
File rotation rotates to files with a timestamp-infix, like "r2020-01-27_14-41-08"
.
File rotation rotates to files with a number-infix.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Naming
impl UnwindSafe for Naming
Blanket Implementations
Mutably borrows from an owned value. Read more