about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-08-12 15:32:56 +0900
committerGitHub <noreply@github.com>2021-08-12 15:32:56 +0900
commit4c632d90682f42b1715153b65675e8a047d171ef (patch)
treec1cf7f4af4188148f55de899ad0e4a737968782d
parent8fe868d82d32269b78158e15cfac86e3b5279ebf (diff)
parent62b8a5ef04c1c63401392531663570e58683545b (diff)
downloadrust-4c632d90682f42b1715153b65675e8a047d171ef.tar.gz
rust-4c632d90682f42b1715153b65675e8a047d171ef.zip
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
-rw-r--r--compiler/rustc_driver/src/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs
index 84dd69ebd96..fcc70b2e4c5 100644
--- a/compiler/rustc_driver/src/lib.rs
+++ b/compiler/rustc_driver/src/lib.rs
@@ -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);