From 252961f216b07ee0eef3d3abec1d04da7064241a Mon Sep 17 00:00:00 2001 From: Alexandru Gheorghe Date: Mon, 22 Jan 2024 16:41:16 +0200 Subject: [PATCH] approval-voting: Move verbose log from debug to tracing ... it was like that before it was accidentally changed in https://github.com/paritytech/polkadot-sdk/commit/a84dd0dba58d51503b8942360aa4fb30a5a96af5 Signed-off-by: Alexandru Gheorghe --- polkadot/node/core/approval-voting/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/node/core/approval-voting/src/lib.rs b/polkadot/node/core/approval-voting/src/lib.rs index 9116725c2911..3161d6186a1e 100644 --- a/polkadot/node/core/approval-voting/src/lib.rs +++ b/polkadot/node/core/approval-voting/src/lib.rs @@ -2583,7 +2583,7 @@ where _ => {}, } - gum::debug!( + gum::trace!( target: LOG_TARGET, validator_index = approval.validator.0, candidate_hash = ?approved_candidate_hash, @@ -2700,7 +2700,7 @@ where let is_approved = check.is_approved(tick_now.saturating_sub(APPROVAL_DELAY)); if status.last_no_shows != 0 { metrics.on_observed_no_shows(status.last_no_shows); - gum::debug!( + gum::trace!( target: LOG_TARGET, ?candidate_hash, ?block_hash,