2 unstable releases

0.2.0 Jan 14, 2023
0.1.0 Mar 31, 2021

#238 in Debugging

Download history 15590/week @ 2024-09-17 25783/week @ 2024-09-24 24942/week @ 2024-10-01 26859/week @ 2024-10-08 32670/week @ 2024-10-15 34827/week @ 2024-10-22 33658/week @ 2024-10-29 32098/week @ 2024-11-05 33145/week @ 2024-11-12 31002/week @ 2024-11-19 28857/week @ 2024-11-26 40094/week @ 2024-12-03 34429/week @ 2024-12-10 23883/week @ 2024-12-17 13980/week @ 2024-12-24 15751/week @ 2024-12-31

94,621 downloads per month
Used in 38 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