Remove unnecessary dbg

This commit is contained in:
Lennart
2025-01-23 18:18:42 +01:00
parent a3acfb8969
commit 75e60b852d

View File

@@ -121,7 +121,6 @@ impl<AS: AddressbookStore> CalendarStore for ContactBirthdayStore<AS> {
object_id: &str,
) -> Result<CalendarObject, Error> {
let (addressobject_id, date_type) = object_id.rsplit_once("-").ok_or(Error::NotFound)?;
dbg!(addressobject_id, date_type);
self.0
.get_object(principal, cal_id, addressobject_id)
.await?