Rollup merge of #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
This commit is contained in:
Yuki Okushi 2021-08-12 15:32:56 +09:00 committed by GitHub
commit 4c632d9068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1287,9 +1287,6 @@ pub fn init_env_logger(env: &str) {
.with_indent_lines(true) .with_indent_lines(true)
.with_ansi(color_logs) .with_ansi(color_logs)
.with_targets(true) .with_targets(true)
.with_wraparound(10)
.with_verbose_exit(true)
.with_verbose_entry(true)
.with_indent_amount(2); .with_indent_amount(2);
#[cfg(parallel_compiler)] #[cfg(parallel_compiler)]
let layer = layer.with_thread_ids(true).with_thread_names(true); let layer = layer.with_thread_ids(true).with_thread_names(true);