Log detailed expectation success summaries

This commit is contained in:
andrussal 2025-12-13 11:55:26 +01:00
parent a54eb53697
commit b3dd758b14
2 changed files with 8 additions and 3 deletions

View File

@ -248,9 +248,13 @@ impl Expectation for DaWorkloadExpectation {
}
tracing::info!(
planned = planned_total,
inscriptions = planned_total - missing_inscriptions.len(),
blobs_observed = observed_total_blobs,
planned_channels = planned_total,
channels_with_blobs = channels_with_blobs.len(),
inscriptions_observed = planned_total - missing_inscriptions.len(),
observed_total_blobs,
expected_total_blobs,
required_blobs,
observed_blocks,
"DA inclusion expectation satisfied"
);

View File

@ -156,6 +156,7 @@ impl Expectation for TxInclusionExpectation {
observed,
required,
expected = state.expected,
min_inclusion_ratio = MIN_INCLUSION_RATIO,
"tx inclusion expectation satisfied"
);
Ok(())