mirror of
https://github.com/mikedilger/chorus.git
synced 2026-04-03 06:41:16 +00:00
Log count of deleted events on startup
This commit is contained in:
parent
5173d63ed0
commit
b6b598450a
@ -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()?;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user