Log count of deleted events on startup

This commit is contained in:
Mike Dilger 2024-02-19 19:46:23 +13:00
parent 5173d63ed0
commit b6b598450a

View File

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