downgrade really verbose logging to trace
This commit is contained in:
parent
989e7479d9
commit
f3bdcfb8b0
1 changed files with 2 additions and 2 deletions
|
@ -679,7 +679,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
|
||||||
return_place: Option<&PlaceTy<'tcx, M::PointerTag>>,
|
return_place: Option<&PlaceTy<'tcx, M::PointerTag>>,
|
||||||
return_to_block: StackPopCleanup,
|
return_to_block: StackPopCleanup,
|
||||||
) -> InterpResult<'tcx> {
|
) -> InterpResult<'tcx> {
|
||||||
debug!("body: {:#?}", body);
|
trace!("body: {:#?}", body);
|
||||||
// first push a stack frame so we have access to the local substs
|
// first push a stack frame so we have access to the local substs
|
||||||
let pre_frame = Frame {
|
let pre_frame = Frame {
|
||||||
body,
|
body,
|
||||||
|
@ -836,7 +836,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
debug!("locals: {:#?}", frame.locals);
|
trace!("locals: {:#?}", frame.locals);
|
||||||
|
|
||||||
// Cleanup: deallocate all locals that are backed by an allocation.
|
// Cleanup: deallocate all locals that are backed by an allocation.
|
||||||
for local in &frame.locals {
|
for local in &frame.locals {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue