Skip to content

Commit

Permalink
client/beefy: fix logs (paritytech#13130)
Browse files Browse the repository at this point in the history
Minor change to logs but required to minimize spamming during initial BEEFY deployment.
  • Loading branch information
acatangiu authored and ltfschoen committed Feb 22, 2023
1 parent 9e25b3e commit 0a35432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/beefy/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 => (),
Expand Down Expand Up @@ -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 => (),
Expand Down

0 comments on commit 0a35432

Please sign in to comment.