diff --git a/crates/store_sqlite/src/addressbook_store.rs b/crates/store_sqlite/src/addressbook_store.rs index cc3f705..daf3f47 100644 --- a/crates/store_sqlite/src/addressbook_store.rs +++ b/crates/store_sqlite/src/addressbook_store.rs @@ -675,7 +675,7 @@ impl AddressbookStore for SqliteAddressbookStore { .await? .push_topic, }) { - error!("Push notification about deleted addressbook failed: {err}"); + error!("Push notification about restored addressbook object failed: {err}"); } Ok(()) diff --git a/crates/store_sqlite/src/calendar_store.rs b/crates/store_sqlite/src/calendar_store.rs index 61ba540..1787672 100644 --- a/crates/store_sqlite/src/calendar_store.rs +++ b/crates/store_sqlite/src/calendar_store.rs @@ -831,7 +831,7 @@ impl CalendarStore for SqliteCalendarStore { data: CollectionOperationInfo::Content { sync_token }, topic: self.get_calendar(principal, cal_id, true).await?.push_topic, }) { - error!("Push notification about deleted calendar failed: {err}"); + error!("Push notification about restored calendar object failed: {err}"); } Ok(()) }