1
Fork 0

Reduce log level used by tracing instrumentation from info to debug

This commit is contained in:
Tomasz Miąsko 2021-01-24 00:00:00 +00:00
parent 9a9477fada
commit 59457ab86e
7 changed files with 7 additions and 7 deletions

View file

@ -789,7 +789,7 @@ impl Visitor<'tcx> for Validator<'mir, 'tcx> {
}
}
#[instrument(skip(self))]
#[instrument(level = "debug", skip(self))]
fn visit_terminator(&mut self, terminator: &Terminator<'tcx>, location: Location) {
use rustc_target::spec::abi::Abi::RustIntrinsic;