From b19a037fac10110fe5b7b9ef2574bb31a84a9c81 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 21 Jul 2021 13:13:31 +1000 Subject: [PATCH] Add debug output to notify loop --- backend/notification.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/notification.py b/backend/notification.py index 39579a43..e3e7e0a5 100644 --- a/backend/notification.py +++ b/backend/notification.py @@ -4,6 +4,7 @@ import apprise def process_notification(n_object, datastore): apobj = apprise.Apprise() for url in n_object['notification_urls']: + print (">> Process Notification: AppRise notifying {}".format(url.strip())) apobj.add(url.strip()) # Get the notification body from datastore