File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ impl Signer {
251
251
block_proposal : & BlockProposal ,
252
252
miner_pubkey : & Secp256k1PublicKey ,
253
253
) {
254
- debug ! ( "{self}: Received a block proposal: {block_proposal:?}" ) ;
254
+ info ! ( "{self}: Received a block proposal: {block_proposal:?}" ) ;
255
255
if block_proposal. reward_cycle != self . reward_cycle {
256
256
// We are not signing for this reward cycle. Ignore the block.
257
257
debug ! (
@@ -287,7 +287,7 @@ impl Signer {
287
287
return ;
288
288
}
289
289
290
- debug ! (
290
+ info ! (
291
291
"{self}: received a block proposal for a new block. Submit block for validation. " ;
292
292
"signer_sighash" => %signer_signature_hash,
293
293
"block_id" => %block_proposal. block. block_id( ) ,
@@ -388,7 +388,7 @@ impl Signer {
388
388
389
389
/// Handle the block validate response returned from our prior calls to submit a block for validation
390
390
fn handle_block_validate_response ( & mut self , block_validate_response : & BlockValidateResponse ) {
391
- debug ! ( "{self}: Received a block validate response: {block_validate_response:?}" ) ;
391
+ info ! ( "{self}: Received a block validate response: {block_validate_response:?}" ) ;
392
392
let ( response, block_info) = match block_validate_response {
393
393
BlockValidateResponse :: Ok ( block_validate_ok) => {
394
394
crate :: monitoring:: increment_block_validation_responses ( true ) ;
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ impl SignerTrait<SignerMessage> for Signer {
201
201
} ;
202
202
match event {
203
203
SignerEvent :: BlockValidationResponse ( block_validate_response) => {
204
- debug ! ( "{self}: Received a block proposal result from the stacks node..." ) ;
204
+ info ! ( "{self}: Received a block proposal result from the stacks node..." ) ;
205
205
self . handle_block_validate_response (
206
206
stacks_client,
207
207
block_validate_response,
@@ -703,7 +703,7 @@ impl Signer {
703
703
} ;
704
704
self . handle_packets ( stacks_client, res, & [ packet] , current_reward_cycle) ;
705
705
}
706
- debug ! (
706
+ info ! (
707
707
"{self}: Received a block validate response" ;
708
708
"block_hash" => block_info. block. header. block_hash( ) ,
709
709
"valid" => block_info. valid,
@@ -1130,7 +1130,7 @@ impl Signer {
1130
1130
match operation_result {
1131
1131
OperationResult :: Sign ( signature) => {
1132
1132
crate :: monitoring:: increment_operation_results ( "sign" ) ;
1133
- debug ! ( "{self}: Received signature result" ) ;
1133
+ info ! ( "{self}: Received signature result" ) ;
1134
1134
self . process_signature ( signature) ;
1135
1135
}
1136
1136
OperationResult :: SignTaproot ( _) => {
You can’t perform that action at this time.
0 commit comments