Skip to content

Commit f3bdcfb

Browse files
committed
downgrade really verbose logging to trace
1 parent 989e747 commit f3bdcfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_const_eval/src/interpret/eval_context.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
679679
return_place: Option<&PlaceTy<'tcx, M::PointerTag>>,
680680
return_to_block: StackPopCleanup,
681681
) -> InterpResult<'tcx> {
682-
debug!("body: {:#?}", body);
682+
trace!("body: {:#?}", body);
683683
// first push a stack frame so we have access to the local substs
684684
let pre_frame = Frame {
685685
body,
@@ -836,7 +836,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
836836
return Ok(());
837837
}
838838

839-
debug!("locals: {:#?}", frame.locals);
839+
trace!("locals: {:#?}", frame.locals);
840840

841841
// Cleanup: deallocate all locals that are backed by an allocation.
842842
for local in &frame.locals {

0 commit comments

Comments
 (0)