Remove max loglevel feature from netstack and reduce default loglevel

This commit is contained in:
Antoine Reversat
2026-05-06 16:14:24 -04:00
parent c75e5a3c67
commit ddb7de4ea7
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ pub fn init_logger(process_name: &str) {
OutputBuilder::stdout()
.with_ansi_escape_codes()
.flush_on_newline(true)
.with_filter(log::LevelFilter::Trace)
.with_filter(log::LevelFilter::Warn)
.build(),
)
.with_process_name(process_name.into())