Crates.io | tari-log4rs |
lib.rs | tari-log4rs |
version | 1.2.0 |
source | src |
created_at | 2024-02-09 12:56:23.148986 |
updated_at | 2024-02-09 12:56:23.148986 |
description | A highly configurable multi-output logging implementation for the `log` facade |
homepage | |
repository | https://github.com/estk/log4rs |
max_upload_size | |
id | 1133923 |
size | 250,357 |
This is a fork of log4rs fixing some security bugs. This is used as a stop gap till log4rs 1.3 is released on crates.io
log4rs is a highly configurable logging framework modeled after Java's Logback and log4j libraries.
If you are using the file rotation in your configuration there is a known substantial performance issue so listen up!
By default the gzip
feature is enabled and when rolling files it will zip log archives automatically. This is a problem
when the log archives are large as the zip happens in the main thread and will halt the process while the zip is completed.
Be advised that the gzip
feature will be removed from default features as of 1.0
.
The methods to mitigate this are as follows.
background_rotation
feature which spawns an os thread to do the compression.gzip
feature with --no-default-features
.For more information see the PR that added background_rotation
.
log4rs.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:
use log::{error, info, warn};
use log4rs;
fn main() {
log4rs::init_file("config/log4rs.yaml", Default::default()).unwrap();
info!("booting up");
// ...
}
1.46
cargo test --all-features
cross test --target x86_64-pc-windows-gn
./test.sh
./test.sh win
Licensed under either of
at your option.
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.