Skip to content

Commit

Permalink
Rollup merge of rust-lang#87903 - jackh726:logging-cleanup, r=oli-obk
Browse files Browse the repository at this point in the history
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
  • Loading branch information
JohnTitor committed Aug 11, 2021
2 parents 3b8d386 + 62b8a5e commit d078934
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions compiler/rustc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1287,9 +1287,6 @@ pub fn init_env_logger(env: &str) {
.with_indent_lines(true)
.with_ansi(color_logs)
.with_targets(true)
.with_wraparound(10)
.with_verbose_exit(true)
.with_verbose_entry(true)
.with_indent_amount(2);
#[cfg(parallel_compiler)]
let layer = layer.with_thread_ids(true).with_thread_names(true);
Expand Down

0 comments on commit d078934

Please sign in to comment.