sc-consensus-beefy: reduce log levels (#3418)

fixes https://github.com/paritytech/polkadot-sdk/issues/3407
This commit is contained in:
Adrian Catangiu
2024-02-21 12:24:14 +02:00
committed by GitHub
parent f3a6b6dcea
commit cbeccad65f
3 changed files with 19 additions and 14 deletions
+6 -2
View File
@@ -460,10 +460,14 @@ where
R::Api: BeefyApi<B, AuthorityId>,
{
let blockchain = backend.blockchain();
// Walk up the chain looking for the validator set active at 'at_header'. Process both state and
// header digests.
debug!(target: LOG_TARGET, "🥩 Trying to find validator set active at header: {:?}", at_header);
debug!(
target: LOG_TARGET,
"🥩 Trying to find validator set active at header(number {:?}, hash {:?})",
at_header.number(),
at_header.hash()
);
let mut header = at_header.clone();
loop {
debug!(target: LOG_TARGET, "🥩 Looking for auth set change at block number: {:?}", *header.number());