Skip to content

Commit 9b4f79d

Browse files
starknet_os: log entering tx hash and type (#10428)
1 parent e98e65e commit 9b4f79d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/starknet_os/src/hint_processor/os_logger.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ impl OsLogger {
479479
os_program,
480480
)?);
481481
self.current_tx = Some(OsTransactionTrace::new(tx_type, tx_hash));
482-
self.log(&format!("Entering {tx_type:?}: {tx_hash}."), true);
482+
log::info!("Entering transaction: {tx_hash} (type: {tx_type:?})");
483483
Ok(())
484484
}
485485

0 commit comments

Comments
 (0)