Skip to content

Commit

Permalink
chore(logging): bump min level for file logger to info
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjoehnk committed Aug 9, 2024
1 parent b9fab99 commit 833c060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/mizer/src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ fn file_layer<S: Subscriber + for<'a> LookupSpan<'a>>(
.with_line_number(false)
.json()
.with_writer(file_appender)
.with_filter(LevelFilter::from_level(Level::DEBUG));
.with_filter(LevelFilter::from_level(Level::INFO));

(Some(guard), Some(file_layer))
} else {
Expand Down

0 comments on commit 833c060

Please sign in to comment.