Skip to content

Commit 861bff0

Browse files
committed
moved from info to debug stacks block related logs
1 parent 77c6a0e commit 861bff0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

stacks-signer/src/v0/signer.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ impl SignerTrait<SignerMessage> for Signer {
153153
burn_header_hash,
154154
received_time,
155155
} => {
156-
info!("{self}: Receved a new burn block event for block height {burn_height}");
156+
info!("{self}: Received a new burn block event for block height {burn_height}");
157157
if let Err(e) =
158158
self.signer_db
159159
.insert_burn_block(burn_header_hash, *burn_height, received_time)
@@ -251,7 +251,7 @@ impl Signer {
251251
block_proposal: &BlockProposal,
252252
miner_pubkey: &Secp256k1PublicKey,
253253
) {
254-
info!("{self}: Received a block proposal: {block_proposal:?}");
254+
debug!("{self}: Received a block proposal: {block_proposal:?}");
255255
if block_proposal.reward_cycle != self.reward_cycle {
256256
// We are not signing for this reward cycle. Ignore the block.
257257
debug!(
@@ -388,7 +388,7 @@ impl Signer {
388388

389389
/// Handle the block validate response returned from our prior calls to submit a block for validation
390390
fn handle_block_validate_response(&mut self, block_validate_response: &BlockValidateResponse) {
391-
info!("{self}: Received a block validate response: {block_validate_response:?}");
391+
debug!("{self}: Received a block validate response: {block_validate_response:?}");
392392
let (response, block_info) = match block_validate_response {
393393
BlockValidateResponse::Ok(block_validate_ok) => {
394394
crate::monitoring::increment_block_validation_responses(true);

stacks-signer/src/v1/signer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl SignerTrait<SignerMessage> for Signer {
201201
};
202202
match event {
203203
SignerEvent::BlockValidationResponse(block_validate_response) => {
204-
info!("{self}: Received a block proposal result from the stacks node...");
204+
debug!("{self}: Received a block proposal result from the stacks node...");
205205
self.handle_block_validate_response(
206206
stacks_client,
207207
block_validate_response,
@@ -703,7 +703,7 @@ impl Signer {
703703
};
704704
self.handle_packets(stacks_client, res, &[packet], current_reward_cycle);
705705
}
706-
info!(
706+
debug!(
707707
"{self}: Received a block validate response";
708708
"block_hash" => block_info.block.header.block_hash(),
709709
"valid" => block_info.valid,

0 commit comments

Comments
 (0)