rust-create-cascade: more descriptive log message for delta lower bounds

This commit is contained in:
John M. Schanck 2024-10-28 11:58:53 -07:00 коммит произвёл John Schanck
Родитель 25055888a5
Коммит 6b18136b32
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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
);