mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 07:01:05 +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)
|
warn!(target: "beefy", "🥩 Buffer vote dropped for round: {:?}", block_num)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
error!(target: "beefy", "🥩 Buffer justification dropped for round: {:?}.", block_num);
|
warn!(target: "beefy", "🥩 Buffer vote dropped for round: {:?}.", block_num);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
RoundAction::Drop => (),
|
RoundAction::Drop => (),
|
||||||
@@ -528,7 +528,7 @@ where
|
|||||||
if self.pending_justifications.len() < MAX_BUFFERED_JUSTIFICATIONS {
|
if self.pending_justifications.len() < MAX_BUFFERED_JUSTIFICATIONS {
|
||||||
self.pending_justifications.entry(block_num).or_insert(justification);
|
self.pending_justifications.entry(block_num).or_insert(justification);
|
||||||
} else {
|
} else {
|
||||||
error!(target: "beefy", "🥩 Buffer justification dropped for round: {:?}.", block_num);
|
warn!(target: "beefy", "🥩 Buffer justification dropped for round: {:?}.", block_num);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
RoundAction::Drop => (),
|
RoundAction::Drop => (),
|
||||||
|
|||||||
Reference in New Issue
Block a user