Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions node/core/approval-voting/src/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ pub(crate) async fn handle_new_head(
let num_candidates = included_candidates.len();
let approved_bitfield = {
if needed_approvals == 0 {
tracing::debug!(
tracing::trace!(
target: LOG_TARGET,
block_hash = ?block_hash,
"Insta-approving all candidates",
Expand All @@ -468,7 +468,7 @@ pub(crate) async fn handle_new_head(
}
}
if result.any() {
tracing::debug!(
tracing::trace!(
target: LOG_TARGET,
block_hash = ?block_hash,
"Insta-approving {}/{} candidates as the number of validators is too low",
Expand Down
4 changes: 2 additions & 2 deletions node/core/approval-voting/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ async fn handle_from_overseer(
Ok(block_imported_candidates) => {
// Schedule wakeups for all imported candidates.
for block_batch in block_imported_candidates {
tracing::debug!(
tracing::trace!(
target: LOG_TARGET,
block_hash = ?block_batch.block_hash,
num_candidates = block_batch.imported_candidates.len(),
Expand Down Expand Up @@ -2410,7 +2410,7 @@ async fn issue_approval(
)
.expect("Statement just signed; should pass checks; qed");

tracing::debug!(
tracing::trace!(
target: LOG_TARGET,
?candidate_hash,
?block_hash,
Expand Down