Skip to content

Commit 7c37f89

Browse files
committed
chore: info accept/reject
1 parent b3645c7 commit 7c37f89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stackslib/src/net/relay.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ impl Relayer {
663663
debug!(
664664
"Handle incoming Nakamoto block {}/{}",
665665
&block.header.consensus_hash,
666-
&block.header.block_hash()
666+
&block.header.block_hash(),
667667
);
668668

669669
// do we have this block? don't lock the DB needlessly if so.
@@ -745,14 +745,14 @@ impl Relayer {
745745
staging_db_tx.commit()?;
746746

747747
if accepted {
748-
debug!("{}", &accept_msg);
748+
info!("{}", &accept_msg);
749749
if let Some(coord_comms) = coord_comms {
750750
if !coord_comms.announce_new_stacks_block() {
751751
return Err(chainstate_error::NetError(net_error::CoordinatorClosed));
752752
}
753753
}
754754
} else {
755-
debug!("{}", &reject_msg);
755+
info!("{}", &reject_msg);
756756
}
757757

758758
Ok(accepted)

0 commit comments

Comments
 (0)