Skip to content

Commit 10a567e

Browse files
authored
Rollup merge of rust-lang#87903 - jackh726:logging-cleanup, r=oli-obk
Reduce verbosity of tracing output of RUSTC_LOG The current output is really hard to read, I find, for things like trait selection. I nearly always end up removing these calls locally. r? ``@oli-obk`` since you originally authored this
2 parents 3144602 + 62b8a5e commit 10a567e

File tree

1 file changed

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

1 file changed

+0
-3
lines changed

compiler/rustc_driver/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,9 +1287,6 @@ pub fn init_env_logger(env: &str) {
12871287
.with_indent_lines(true)
12881288
.with_ansi(color_logs)
12891289
.with_targets(true)
1290-
.with_wraparound(10)
1291-
.with_verbose_exit(true)
1292-
.with_verbose_entry(true)
12931290
.with_indent_amount(2);
12941291
#[cfg(parallel_compiler)]
12951292
let layer = layer.with_thread_ids(true).with_thread_names(true);

0 commit comments

Comments
 (0)