base: Don't log raw event for notifications

This commit is contained in:
Jonas Platte
2023-05-08 19:06:01 +02:00
committed by Jonas Platte
parent 935dc6ec41
commit aa3b2d4698

View File

@@ -72,7 +72,7 @@ impl fmt::Debug for SyncResponse {
.field("device_lists", &self.device_lists)
.field("device_one_time_keys_count", &self.device_one_time_keys_count)
.field("ambiguity_changes", &self.ambiguity_changes)
.field("notifications", &self.notifications)
.field("notifications", &DebugNotificationMap(&self.notifications))
.finish_non_exhaustive()
}
}