mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 07:58:02 +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?;
|
||||
|
||||
let core_bits = FromIterator::from_iter(results.into_iter());
|
||||
tracing::debug!(
|
||||
target: LOG_TARGET,
|
||||
?relay_parent,
|
||||
"Signing Bitfield for {} cores: {:?}",
|
||||
availability_cores.len(),
|
||||
results,
|
||||
"Signing Bitfield for {core_count} cores: {core_bits}",
|
||||
core_count = availability_cores.len(),
|
||||
core_bits = core_bits,
|
||||
);
|
||||
|
||||
Ok(AvailabilityBitfield(FromIterator::from_iter(results)))
|
||||
Ok(AvailabilityBitfield(core_bits))
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
|
||||
Reference in New Issue
Block a user