Downgrade memory store 'Saved changes in <time>' to debug

It doesn't seem very interesting since a memory store will be fast anyway. In practice, this fills the console quickly.
This commit is contained in:
Olivier Wilkinson (reivilibre)
2023-04-05 09:37:53 +01:00
committed by Damir Jelić
parent 7c578dccb9
commit 9c54de1817

View File

@@ -33,7 +33,7 @@ use ruma::{
CanonicalJsonObject, EventId, MxcUri, OwnedEventId, OwnedRoomId, OwnedUserId, RoomId,
RoomVersionId, UserId,
};
use tracing::{debug, info, warn};
use tracing::{debug, warn};
use super::{Result, RoomInfo, StateChanges, StateStore, StoreError};
use crate::{
@@ -439,7 +439,7 @@ impl MemoryStore {
}
}
info!("Saved changes in {:?}", now.elapsed());
debug!("Saved changes in {:?}", now.elapsed());
Ok(())
}