From 20846d3bd63c5201587be627bacf881284ca5326 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Fri, 10 Apr 2026 07:48:40 +0200 Subject: [PATCH] hook/email: log event.uuid on notification --- radicale/hook/email/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/radicale/hook/email/__init__.py b/radicale/hook/email/__init__.py index e89961db..42d914f9 100644 --- a/radicale/hook/email/__init__.py +++ b/radicale/hook/email/__init__.py @@ -1013,8 +1013,9 @@ class Hook(BaseHook): if not previous_item_str: # Dealing with a completely new event, no previous content to compare against. # Email every attendee about the new event. - logger.debug("New event detected, sending notifications to all attendees.") - email_success: bool = self.email_config.send_added_email( # type: ignore + logger.info("New event detected, sending notifications to all attendees: %s", + email_event.event.uid) + email_success = self.email_config.send_added_email( attendees=email_event.event.attendees, event=email_event )