# log4rs **Repository Path**: mirrors_sfackler/log4rs ## Basic Information - **Project Name**: log4rs - **Description**: A highly configurable logging framework for Rust - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-02 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # log4rs [![docs](https://docs.rs/log4rs/badge.svg)](https://docs.rs/log4rs) [![crates.io](https://img.shields.io/crates/v/log4rs.svg)](https://crates.io/crates/log4rs) [![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](#license) [![Minimum rustc version](https://img.shields.io/badge/rustc-1.82+-green.svg)](https://github.com/estk/log4rs#rust-version-requirements) [![CI](https://github.com/estk/log4rs/actions/workflows/main.yml/badge.svg)](https://github.com/estk/log4rs/actions/workflows/main.yml) log4rs is a highly configurable logging framework modeled after Java's Logback and log4j libraries. ## Quick Start log4rs.yaml: ```yaml refresh_rate: 30 seconds appenders: stdout: kind: console requests: kind: file path: "log/requests.log" encoder: pattern: "{d} - {m}{n}" root: level: warn appenders: - stdout loggers: app::backend::db: level: info app::requests: level: info appenders: - requests additive: false ``` lib.rs: ```rust use log::{error, info, warn}; use log4rs; fn main() { log4rs::init_file("config/log4rs.yaml", Default::default()).unwrap(); info!("booting up"); // ... } ``` ## Rust Version Requirements 1.82 ## Building for Dev * Run the tests: `cargo test --all-features` * Run the tests for windows with [cross](https://github.com/rust-embedded/cross): `cross test --target x86_64-pc-windows-gnu` * Run the tests for all individual features: `./test.sh` * Run the tests for all individual features for windows with [cross](https://github.com/rust-embedded/cross): `./test.sh win` ## Compression If you are using the file rotation in your configuration there is a known substantial performance issue with either the `gzip` or `zstd` features. When rolling files it will zip log archives automatically. This is a problem when the log archives are large as the zip process occurs in the main thread and will halt the process until the zip process completes. The methods to mitigate this are as follows. 1. Use the `background_rotation` feature which spawns an os thread to do the compression. 2. Do not enable the `gzip` nor the `zstd` features. 3. Ensure the archives are small enough that the compression time is acceptable. For more information see the PR that added [`background_rotation`](https://github.com/estk/log4rs/pull/117). ## Wasm Support If you are building this library for a Wasm target with the `time_trigger` feature enabled, you need to make sure the Rust flag `--cfg getrandom_backend="wasm_js"` is supplied to the compiler. This should be automatic when compiling with Cargo, but some configurations and tooling might require you to set an environment variable: ```bash export RUSTFLAGS='--cfg getrandom_backend="wasm_js"' ``` ## License Licensed under either of * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or ) * MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. ### Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.