diff --git a/polkadot/node/core/candidate-selection/src/lib.rs b/polkadot/node/core/candidate-selection/src/lib.rs index a7cd459632..077fb340d7 100644 --- a/polkadot/node/core/candidate-selection/src/lib.rs +++ b/polkadot/node/core/candidate-selection/src/lib.rs @@ -164,6 +164,18 @@ impl JobTrait for CandidateSelectionJob { } None => { assignment_span.add_string_tag("assigned", "false"); + + let validator_index = validator.index(); + let validator_id = validator.id(); + + tracing::debug!( + target: LOG_TARGET, + ?relay_parent, + ?validator_index, + ?validator_id, + "No assignment. Will not select candidate." + ); + return Ok(()) } };