adjust BEEFY client logging (#11261)

Move gossip filter logging to level=trace because it's very spammy.
Move some debug-relevant logs from trace to debug.

Signed-off-by: acatangiu <adrian@parity.io>
This commit is contained in:
Adrian Catangiu
2022-04-21 20:58:03 +03:00
committed by GitHub
parent 97f5193137
commit 7416c8c5de
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -220,7 +220,7 @@ where
let round = msg.commitment.block_number;
let allowed = known_votes.is_live(&round);
debug!(target: "beefy", "🥩 Message for round #{} allowed: {}", round, allowed);
trace!(target: "beefy", "🥩 Message for round #{} allowed: {}", round, allowed);
allowed
})