From b3dd758b14d1979d7a3b525145c2a1a735ba3bd3 Mon Sep 17 00:00:00 2001 From: andrussal Date: Sat, 13 Dec 2025 11:55:26 +0100 Subject: [PATCH] Log detailed expectation success summaries --- .../workflows/src/workloads/da/expectation.rs | 10 +++++++--- .../workflows/src/workloads/transaction/expectation.rs | 1 + 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/testing-framework/workflows/src/workloads/da/expectation.rs b/testing-framework/workflows/src/workloads/da/expectation.rs index 87d7e73..f16b10d 100644 --- a/testing-framework/workflows/src/workloads/da/expectation.rs +++ b/testing-framework/workflows/src/workloads/da/expectation.rs @@ -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" ); diff --git a/testing-framework/workflows/src/workloads/transaction/expectation.rs b/testing-framework/workflows/src/workloads/transaction/expectation.rs index e06cfe5..1790ed4 100644 --- a/testing-framework/workflows/src/workloads/transaction/expectation.rs +++ b/testing-framework/workflows/src/workloads/transaction/expectation.rs @@ -156,6 +156,7 @@ impl Expectation for TxInclusionExpectation { observed, required, expected = state.expected, + min_inclusion_ratio = MIN_INCLUSION_RATIO, "tx inclusion expectation satisfied" ); Ok(())