Skip to content

Commit

Permalink
remove repeat tokens on log lines
Browse files Browse the repository at this point in the history
  • Loading branch information
xoloki committed Dec 18, 2024
1 parent fe8c468 commit 44bb948
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/state_machine/signer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -588,10 +588,13 @@ impl<SignerType: SignerTrait> Signer<SignerType> {
|| signer_id_set.len() > self.total_signers.try_into().unwrap()
|| signer_id_set.last().unwrap() > &self.total_signers
{
warn!(signer_ids = ?signer_ids, "Got SignatureShareRequest with invalid NonceResponse");
warn!(
?signer_ids,
"Got SignatureShareRequest with invalid NonceResponse"
);
return Err(Error::InvalidNonceResponse);
} else {
debug!(signer_ids = ?signer_ids, "Got SignatureShareRequest");
debug!(?signer_ids, "Got SignatureShareRequest");
}

for signer_id in &signer_ids {
Expand Down

0 comments on commit 44bb948

Please sign in to comment.