We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23508e4 commit 2d7424eCopy full SHA for 2d7424e
tracing-appender/src/rolling/compress.rs
@@ -34,7 +34,10 @@ impl Default for Compression {
34
} else if #[cfg(feature = "brotli")] {
35
Self::Brotli {
36
buffer_size: 4096,
37
- params: BrotliEncoderParams::default(),
+ params: BrotliEncoderParams {
38
+ quality: 6, // https://github.com/google/ngx_brotli?tab=readme-ov-file#brotli_comp_level
39
+ ..BrotliEncoderParams::default()
40
+ },
41
}
42
} else {
43
Self::None
0 commit comments