Skip to content

Commit bcb60d0

Browse files
committed
chore: adjust debugging logs
1 parent 47583e4 commit bcb60d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

extensions/memcpy/circuit/src/iteration.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,7 @@ where
426426
state: VmStateMut<F, TracingMemory, RA>,
427427
instruction: &Instruction<F>,
428428
) -> Result<(), ExecutionError> {
429+
eprintln!("extensions/memcpy/circuit/src/iteration.rs::execute: PREFLIGHT: MemcpyIterExecutor executing MEMCPY_LOOP opcode");
429430
let Instruction { opcode, c, .. } = instruction;
430431
debug_assert_eq!(*opcode, Rv32MemcpyOpcode::MEMCPY_LOOP.global_opcode());
431432
let shift = c.as_canonical_u32() as u8; // written into c slot
@@ -616,8 +617,8 @@ where
616617
debug_assert_eq!(record.inner.len, u32::from_le_bytes(len_data));
617618

618619
*state.pc = state.pc.wrapping_add(DEFAULT_PC_STEP);
619-
eprintln!("preflight height: {:?}", num_iters + 1);
620-
eprintln!("Preflight MemcpyIterExecutor finished");
620+
eprintln!("extensions/memcpy/circuit/src/iteration.rs::execute: PREFLIGHT: preflight height: {:?}", num_iters + 1);
621+
eprintln!("extensions/memcpy/circuit/src/iteration.rs::execute: PREFLIGHT: Preflight MemcpyIterExecutor finished");
621622
Ok(())
622623
}
623624
}

0 commit comments

Comments
 (0)