Skip to content

Commit 22c743f

Browse files
authored
Merge pull request #1142 from ckyrouac/trace-env-fix
tracing: Fix RUST_LOG parsing
2 parents b088833 + d3959e5 commit 22c743f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/src/tracing_util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ pub fn initialize_tracing() {
1111
.compact();
1212
// Log to stderr by default
1313
tracing_subscriber::fmt()
14-
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
1514
.event_format(format)
1615
.with_writer(std::io::stderr)
1716
.with_max_level(tracing::Level::WARN)
17+
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
1818
.init();
1919
}

0 commit comments

Comments
 (0)