mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
client/beefy: fix logs (#13130)
Minor change to logs but required to minimize spamming during initial BEEFY deployment.
This commit is contained in:
@@ -498,7 +498,7 @@ where
|
||||
warn!(target: "beefy", "🥩 Buffer vote dropped for round: {:?}", block_num)
|
||||
}
|
||||
} else {
|
||||
error!(target: "beefy", "🥩 Buffer justification dropped for round: {:?}.", block_num);
|
||||
warn!(target: "beefy", "🥩 Buffer vote dropped for round: {:?}.", block_num);
|
||||
}
|
||||
},
|
||||
RoundAction::Drop => (),
|
||||
@@ -528,7 +528,7 @@ where
|
||||
if self.pending_justifications.len() < MAX_BUFFERED_JUSTIFICATIONS {
|
||||
self.pending_justifications.entry(block_num).or_insert(justification);
|
||||
} else {
|
||||
error!(target: "beefy", "🥩 Buffer justification dropped for round: {:?}.", block_num);
|
||||
warn!(target: "beefy", "🥩 Buffer justification dropped for round: {:?}.", block_num);
|
||||
}
|
||||
},
|
||||
RoundAction::Drop => (),
|
||||
|
||||
Reference in New Issue
Block a user