Skip to content

Commit

Permalink
approval-voting: Move verbose log from debug to tracing (#3019)
Browse files Browse the repository at this point in the history
... it was like that before it was accidentally changed in
a84dd0d

Signed-off-by: Alexandru Gheorghe <[email protected]>
  • Loading branch information
alexggh authored Jan 22, 2024
1 parent bbfff66 commit 95ff9b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions polkadot/node/core/approval-voting/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2583,7 +2583,7 @@ where
_ => {},
}

gum::debug!(
gum::trace!(
target: LOG_TARGET,
validator_index = approval.validator.0,
candidate_hash = ?approved_candidate_hash,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 95ff9b2

Please sign in to comment.