Skip to content

Commit

Permalink
Merge pull request #1142 from ckyrouac/trace-env-fix
Browse files Browse the repository at this point in the history
tracing: Fix RUST_LOG parsing
  • Loading branch information
cgwalters authored Feb 25, 2025
2 parents b088833 + d3959e5 commit 22c743f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/src/tracing_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ pub fn initialize_tracing() {
.compact();
// Log to stderr by default
tracing_subscriber::fmt()
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
.event_format(format)
.with_writer(std::io::stderr)
.with_max_level(tracing::Level::WARN)
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
.init();
}

0 comments on commit 22c743f

Please sign in to comment.