From 6b18136b327c97150da86bd2249d0393af66a03f Mon Sep 17 00:00:00 2001 From: "John M. Schanck" Date: Mon, 28 Oct 2024 11:58:53 -0700 Subject: [PATCH] rust-create-cascade: more descriptive log message for delta lower bounds --- rust-create-cascade/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust-create-cascade/src/main.rs b/rust-create-cascade/src/main.rs index e2ed10f..5c7a239 100644 --- a/rust-create-cascade/src/main.rs +++ b/rust-create-cascade/src/main.rs @@ -890,11 +890,11 @@ fn main() { info!("Counting delta serials"); let delta_stats = count_all(delta_dir, known_dir, delta_reason_set, None); info!( - "Lower bound is {:.0} bytes", + "Lower bound when splitting by issuer is {:.0} bytes", delta_stats.split_by_issuer_lower_bound ); info!( - "Lower bound is {:.0} bytes", + "Lower bound when splitting by issuer and expiry is {:.0} bytes", delta_stats.split_by_issuer_and_expiry_lower_bound );