Reduce log level used by tracing instrumentation from info to debug
This commit is contained in:
parent
9a9477fada
commit
59457ab86e
7 changed files with 7 additions and 7 deletions
|
@ -292,7 +292,7 @@ pub enum InternKind {
|
|||
/// tracks where in the value we are and thus can show much better error messages.
|
||||
/// Any errors here would anyway be turned into `const_err` lints, whereas validation failures
|
||||
/// are hard errors.
|
||||
#[tracing::instrument(skip(ecx))]
|
||||
#[tracing::instrument(level = "debug", skip(ecx))]
|
||||
pub fn intern_const_alloc_recursive<M: CompileTimeMachine<'mir, 'tcx, const_eval::MemoryKind>>(
|
||||
ecx: &mut InterpCx<'mir, 'tcx, M>,
|
||||
intern_kind: InternKind,
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue