Skip to content

Commit b4987f7

Browse files
committed
CRC: improve logging
Signed-off-by: Jacinta Ferrant <[email protected]>
1 parent 82e390d commit b4987f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stacks-signer/src/v0/signer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,14 @@ impl SignerTrait<SignerMessage> for Signer {
147147
return;
148148
}
149149
};
150-
debug!("{self}: received a mock block proposal.";
150+
info!("{self}: received a mock block proposal.";
151151
"current_reward_cycle" => current_reward_cycle,
152152
"epoch" => ?epoch
153153
);
154154
if epoch == StacksEpochId::Epoch25
155155
&& self.reward_cycle == current_reward_cycle
156156
{
157-
// We are in epoch 2.5, so we should mock mine to prove we are still alive.
157+
// We are in epoch 2.5, so we should mock sign to prove we are still alive.
158158
self.mock_sign(mock_proposal.clone());
159159
}
160160
}

0 commit comments

Comments
 (0)