diff options
| author | Esteban Kuber <esteban@kuber.com.ar> | 2021-08-17 16:06:18 +0000 |
|---|---|---|
| committer | Esteban Kuber <esteban@kuber.com.ar> | 2021-08-23 11:58:19 +0000 |
| commit | 31d07edc94814069a02bea7341edfa35c7068786 (patch) | |
| tree | 1d34747e3ce50a75f3f29987199327f3236b20b3 /compiler/rustc_errors/src | |
| parent | 5626346ac9c473f015b4dcb0801576ae76656a2f (diff) | |
| download | rust-31d07edc94814069a02bea7341edfa35c7068786.tar.gz rust-31d07edc94814069a02bea7341edfa35c7068786.zip | |
remove unnecessary `info!()` logging
Diffstat (limited to 'compiler/rustc_errors/src')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index a37d969f595..8c0a9d5aae3 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -14,7 +14,7 @@ extern crate rustc_macros; pub use emitter::ColorConfig; -use tracing::{debug, info}; +use tracing::debug; use Level::*; use emitter::{is_case_difference, Emitter, EmitterWriter}; @@ -348,7 +348,6 @@ impl CodeSuggestion { while buf.ends_with('\n') { buf.pop(); } - info!(?buf, ?highlights); Some((buf, substitution.parts, highlights, only_capitalization)) }) .collect() |
