Skip to content

Commit 31d07ed

Browse files
committed
remove unnecessary info!() logging
1 parent 5626346 commit 31d07ed

File tree

1 file changed

+1
-2
lines changed
  • compiler/rustc_errors/src

1 file changed

+1
-2
lines changed

compiler/rustc_errors/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ extern crate rustc_macros;
1414

1515
pub use emitter::ColorConfig;
1616

17-
use tracing::{debug, info};
17+
use tracing::debug;
1818
use Level::*;
1919

2020
use emitter::{is_case_difference, Emitter, EmitterWriter};
@@ -348,7 +348,6 @@ impl CodeSuggestion {
348348
while buf.ends_with('\n') {
349349
buf.pop();
350350
}
351-
info!(?buf, ?highlights);
352351
Some((buf, substitution.parts, highlights, only_capitalization))
353352
})
354353
.collect()

0 commit comments

Comments
 (0)