Skip to content

Commit 1c9c412

Browse files
committed
Convert global rejection of a block by a signer to an info level log
Signed-off-by: Jacinta Ferrant <jacinta.ferrant@gmail.com>
1 parent 4dbbbc2 commit 1c9c412

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacks-signer/src/v0/signer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ impl Signer {
13741374
// Not enough rejection signatures to make a decision
13751375
return;
13761376
}
1377-
debug!("{self}: {total_reject_weight}/{total_weight} signers voted to reject the block {block_hash}");
1377+
info!("{self}: {total_reject_weight}/{total_weight} signers voted to reject the block {block_hash}");
13781378
if let Err(e) = self.signer_db.mark_block_globally_rejected(&mut block_info) {
13791379
warn!("{self}: Failed to mark block as globally rejected: {e:?}",);
13801380
}

0 commit comments

Comments
 (0)