diff --git a/src/store/mod.rs b/src/store/mod.rs index 35a566d..3576a94 100644 --- a/src/store/mod.rs +++ b/src/store/mod.rs @@ -79,6 +79,9 @@ impl Store { if let Ok(count) = ids.len(&txn) { log::info!("{count} events in storage"); } + if let Ok(count) = deleted_offsets.len(&txn) { + log::info!("{count} deleted events in the map"); + } txn.commit()?;