mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 22:51:13 +00:00
make debug log less noisy (#5063)
This commit is contained in:
committed by
GitHub
parent
acaf0d84fe
commit
3394cbb142
@@ -171,15 +171,16 @@ async fn construct_availability_bitfield(
|
|||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
let core_bits = FromIterator::from_iter(results.into_iter());
|
||||||
tracing::debug!(
|
tracing::debug!(
|
||||||
target: LOG_TARGET,
|
target: LOG_TARGET,
|
||||||
?relay_parent,
|
?relay_parent,
|
||||||
"Signing Bitfield for {} cores: {:?}",
|
"Signing Bitfield for {core_count} cores: {core_bits}",
|
||||||
availability_cores.len(),
|
core_count = availability_cores.len(),
|
||||||
results,
|
core_bits = core_bits,
|
||||||
);
|
);
|
||||||
|
|
||||||
Ok(AvailabilityBitfield(FromIterator::from_iter(results)))
|
Ok(AvailabilityBitfield(core_bits))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
|
|||||||
Reference in New Issue
Block a user