This commit is contained in:
Esteban Kuber 2021-08-14 13:31:48 +00:00
parent 75fd1bf1e6
commit a29a624f86
2 changed files with 13 additions and 20 deletions

View file

@ -14,7 +14,7 @@ extern crate rustc_macros;
pub use emitter::ColorConfig;
use tracing::debug;
use tracing::{debug, info};
use Level::*;
use emitter::{is_case_difference, Emitter, EmitterWriter};
@ -349,6 +349,7 @@ impl CodeSuggestion {
while buf.ends_with('\n') {
buf.pop();
}
info!(?buf, ?highlights);
Some((buf, substitution.parts, highlights, only_capitalization))
})
.collect()