From 62b8a5ef04c1c63401392531663570e58683545b Mon Sep 17 00:00:00 2001 From: jackh726 Date: Mon, 9 Aug 2021 21:39:39 -0400 Subject: [PATCH] Reduce verbosity of RUSTC_LOG --- compiler/rustc_driver/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs index 84dd69ebd9634..fcc70b2e4c5ff 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);