Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 31d07ed

Browse files
committedAug 23, 2021
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

Lines changed: 1 addition & 2 deletions
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)
Please sign in to comment.