2 unstable releases

0.2.0 Jan 14, 2023
0.1.0 Mar 31, 2021

#232 in Debugging

Download history 28738/week @ 2024-07-31 28965/week @ 2024-08-07 25628/week @ 2024-08-14 27051/week @ 2024-08-21 24691/week @ 2024-08-28 27715/week @ 2024-09-04 21073/week @ 2024-09-11 16793/week @ 2024-09-18 25388/week @ 2024-09-25 26113/week @ 2024-10-02 29036/week @ 2024-10-09 32990/week @ 2024-10-16 34820/week @ 2024-10-23 31877/week @ 2024-10-30 31973/week @ 2024-11-06 33271/week @ 2024-11-13

139,796 downloads per month
Used in 37 crates (5 directly)

MIT/Apache

28KB
507 lines

rolling-file

rolling-file on GitHub Actions rolling-file on crates.io rolling-file on docs.rs GitHub: Axcient/rolling-file-rs license: MIT or Apache-2.0 minimum rustc: 1.42

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.

Examples

use rolling_file::*;
let file_appender = BasicRollingFileAppender::new(
    "/var/log/myprogram",
    RollingConditionBasic::new().daily(),
    9
).unwrap();

Development

Must pass latest stable clippy, be formatted with nightly rustfmt, and pass unit tests:

cargo +nightly fmt
cargo clippy --all-targets
cargo test

License

Dual-licensed under the terms of either the MIT license or the Apache 2.0 license.

Changelog

See CHANGELOG.md

Dependencies

~1MB
~18K SLoC