diff options
| author | Ralf Jung <post@ralfj.de> | 2022-04-17 18:45:01 -0400 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-04-17 20:52:33 -0400 |
| commit | f3bdcfb8b08a14a556caa3d1adae835c8bfd8c58 (patch) | |
| tree | ddb3ff8c0fdc13a2e596e949c62572050fcf2aba /compiler/rustc_const_eval/src/interpret | |
| parent | 989e7479d9cbd285c8104a5bbd9159ff2d66188f (diff) | |
| download | rust-f3bdcfb8b08a14a556caa3d1adae835c8bfd8c58.tar.gz rust-f3bdcfb8b08a14a556caa3d1adae835c8bfd8c58.zip | |
downgrade really verbose logging to trace
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/eval_context.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/eval_context.rs b/compiler/rustc_const_eval/src/interpret/eval_context.rs index f0fff602fe4..827959113b9 100644 --- a/compiler/rustc_const_eval/src/interpret/eval_context.rs +++ b/compiler/rustc_const_eval/src/interpret/eval_context.rs @@ -679,7 +679,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> { return_place: Option<&PlaceTy<'tcx, M::PointerTag>>, return_to_block: StackPopCleanup, ) -> InterpResult<'tcx> { - debug!("body: {:#?}", body); + trace!("body: {:#?}", body); // first push a stack frame so we have access to the local substs let pre_frame = Frame { body, @@ -836,7 +836,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> { return Ok(()); } - debug!("locals: {:#?}", frame.locals); + trace!("locals: {:#?}", frame.locals); // Cleanup: deallocate all locals that are backed by an allocation. for local in &frame.locals { |
