Skip to content
3 changes: 2 additions & 1 deletion runtimes/clone/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -697,10 +697,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, sig_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::clone", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
block.header.number,
block.header.hash(),
state_root_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, sig_check, select).expect("try_execute_block failed")
Expand Down
4 changes: 2 additions & 2 deletions runtimes/peregrine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1418,11 +1418,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, signature_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::peregrine", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / signature checks: {:?} sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
block.header.number,
block.header.hash(),
state_root_check,
signature_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, signature_check, select).expect("try_execute_block failed")
Expand Down
3 changes: 2 additions & 1 deletion runtimes/spiritnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1412,10 +1412,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, sig_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
block.header.number,
block.header.hash(),
state_root_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, sig_check, select).expect("try_execute_block failed")
Expand Down
3 changes: 2 additions & 1 deletion runtimes/standalone/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1131,10 +1131,11 @@ impl_runtime_apis! {

fn execute_block(block: Block, state_root_check: bool, sig_check: bool, select: frame_try_runtime::TryStateSelect) -> Weight {
log::info!(
target: "runtime::mashnet_node_standalone", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sanity-checks: {:?}",
target: "runtime::spiritnet", "try-runtime: executing block #{} ({:?}) / root checks: {:?} / sig check: {:?} / sanity-checks: {:?}",
block.header.number,
block.header.hash(),
state_root_check,
sig_check,
select,
);
Executive::try_execute_block(block, state_root_check, sig_check, select).expect("try_execute_block failed")
Expand Down