Skip to content

Commit 3958cec

Browse files
authored
Rollup merge of #79238 - eddyb:rustc-log-stderr, r=jyn514
Direct RUSTC_LOG (tracing/log) output to stderr instead of stdout. Looks like this got missed in the initial implementation, AFAIK the old behavior was to output on stderr. (Hit this while trying to debug `rustc` running inside a build script which was only letting stderr through) r? ``@oli-obk`` cc ``@davidbarsky`` ``@hawkw``
2 parents bb73ea6 + 5ed2d42 commit 3958cec

File tree

1 file changed

+1
-0
lines changed
  • compiler/rustc_driver/src

1 file changed

+1
-0
lines changed

compiler/rustc_driver/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1286,6 +1286,7 @@ pub fn init_env_logger(env: &str) {
12861286
}
12871287
let filter = tracing_subscriber::EnvFilter::from_env(env);
12881288
let layer = tracing_tree::HierarchicalLayer::default()
1289+
.with_writer(io::stderr)
12891290
.with_indent_lines(true)
12901291
.with_ansi(true)
12911292
.with_targets(true)

0 commit comments

Comments
 (0)