Skip to content
Snippets Groups Projects
Unverified Commit 2680f20a authored by Alin Dima's avatar Alin Dima Committed by GitHub
Browse files

make prospective-parachains debug logs less spammy (#6406)

Fixes https://github.com/paritytech/polkadot-sdk/issues/6172
parent 8795ae66
Branches
No related merge requests found
Pipeline #504763 waiting for manual action with stages
in 31 minutes and 9 seconds
......@@ -524,7 +524,7 @@ async fn handle_introduce_seconded_candidate(
},
};
let mut added = false;
let mut added = Vec::with_capacity(view.per_relay_parent.len());
let mut para_scheduled = false;
// We don't iterate only through the active leaves. We also update the deactivated parents in
// the implicit view, so that their upcoming children may see these candidates.
......@@ -536,18 +536,10 @@ async fn handle_introduce_seconded_candidate(
match chain.try_adding_seconded_candidate(&candidate_entry) {
Ok(()) => {
gum::debug!(
target: LOG_TARGET,
?para,
?relay_parent,
?is_active_leaf,
"Added seconded candidate {:?}",
candidate_hash
);
added = true;
added.push(*relay_parent);
},
Err(FragmentChainError::CandidateAlreadyKnown) => {
gum::debug!(
gum::trace!(
target: LOG_TARGET,
?para,
?relay_parent,
......@@ -555,10 +547,10 @@ async fn handle_introduce_seconded_candidate(
"Attempting to introduce an already known candidate: {:?}",
candidate_hash
);
added = true;
added.push(*relay_parent);
},
Err(err) => {
gum::debug!(
gum::trace!(
target: LOG_TARGET,
?para,
?relay_parent,
......@@ -580,16 +572,24 @@ async fn handle_introduce_seconded_candidate(
);
}
if !added {
if added.is_empty() {
gum::debug!(
target: LOG_TARGET,
para = ?para,
candidate = ?candidate_hash,
"Newly-seconded candidate cannot be kept under any relay parent",
);
} else {
gum::debug!(
target: LOG_TARGET,
?para,
"Added/Kept seconded candidate {:?} on relay parents: {:?}",
candidate_hash,
added
);
}
let _ = tx.send(added);
let _ = tx.send(!added.is_empty());
}
async fn handle_candidate_backed(
......@@ -779,12 +779,12 @@ fn answer_hypothetical_membership_request(
membership.push(*active_leaf);
},
Err(err) => {
gum::debug!(
gum::trace!(
target: LOG_TARGET,
para = ?para_id,
leaf = ?active_leaf,
candidate = ?candidate.candidate_hash(),
"Candidate is not a hypothetical member: {}",
"Candidate is not a hypothetical member on: {}",
err
)
},
......@@ -792,6 +792,19 @@ fn answer_hypothetical_membership_request(
}
}
for (candidate, membership) in &response {
if membership.is_empty() {
gum::debug!(
target: LOG_TARGET,
para = ?candidate.candidate_para(),
active_leaves = ?view.active_leaves,
?required_active_leaf,
candidate = ?candidate.candidate_hash(),
"Candidate is not a hypothetical member on any of the active leaves",
)
}
}
let _ = tx.send(response);
}
......
title: 'make prospective-parachains debug logs less spammy'
doc:
- audience: [Node Dev, Node Operator]
description: |
Demote some of the frequent prospective-parachains debug logs to trace level and prefer printing aggregate debug logs.
crates:
- name: polkadot-node-core-prospective-parachains
bump: patch
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment