From 0d350c2a7edb2715dff744a043e75486b3e9e42a Mon Sep 17 00:00:00 2001 From: jeff washington Date: Fri, 2 Aug 2024 14:16:36 -0500 Subject: [PATCH] fix trace to be more helpful --- accounts-db/src/accounts_db.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/accounts-db/src/accounts_db.rs b/accounts-db/src/accounts_db.rs index 39f7f84918fa78..53ded010f792ec 100644 --- a/accounts-db/src/accounts_db.rs +++ b/accounts-db/src/accounts_db.rs @@ -7778,10 +7778,11 @@ impl AccountsDb { if Self::should_not_shrink(alive_bytes, total_bytes) { trace!( - "shrink_slot_forced ({}): not able to shrink at all: alive/stored: {} ({}b / {}b) save: {}", + "shrink_slot_forced ({}): not able to shrink at all: alive/stored: {}/{} ({}b / {}b) save: {}", slot, alive_count, stored_count, + alive_bytes, total_bytes, total_bytes.saturating_sub(alive_bytes), );