Crates.io | rolling-file |
lib.rs | rolling-file |
version | 0.2.0 |
source | src |
created_at | 2021-03-31 16:26:23.769886 |
updated_at | 2023-01-14 03:38:53.8607 |
description | A rolling file appender with customizable rolling conditions. |
homepage | https://github.com/Axcient/rolling-file-rs |
repository | https://github.com/Axcient/rolling-file-rs |
max_upload_size | |
id | 376211 |
size | 41,744 |
A rolling file appender with customizable rolling conditions. Includes built-in support for rolling conditions on date/time (daily, hourly, every minute) and/or size.
Follows a Debian-style naming convention for logfiles, using basename, basename.1, ..., basename.N where N is the maximum number of allowed historical logfiles.
This is useful to combine with the tracing crate and tracing_appender::non_blocking::NonBlocking -- use it as an alternative to tracing_appender::rolling::RollingFileAppender.
use rolling_file::*;
let file_appender = BasicRollingFileAppender::new(
"/var/log/myprogram",
RollingConditionBasic::new().daily(),
9
).unwrap();
Must pass latest stable clippy, be formatted with nightly rustfmt, and pass unit tests:
cargo +nightly fmt
cargo clippy --all-targets
cargo test
Dual-licensed under the terms of either the MIT license or the Apache 2.0 license.
See CHANGELOG.md