diff options
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() |
