Skip to content

Commit

Permalink
chore(node): reduce MAX_UNCOMPRESSED_LOG_FILES to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
maqi committed Jan 23, 2024
1 parent b54447f commit d47b452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sn_logging/src/layers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use tracing_subscriber::{
};

const MAX_LOG_SIZE: usize = 20 * 1024 * 1024;
const MAX_UNCOMPRESSED_LOG_FILES: usize = 100;
const MAX_UNCOMPRESSED_LOG_FILES: usize = 10;
const MAX_LOG_FILES: usize = 1000;
// Everything is logged by default
const ALL_SN_LOGS: &str = "all";
Expand Down

0 comments on commit d47b452

Please sign in to comment.