From 2385b0a79ebeaa7316647e20a2e966388d586276 Mon Sep 17 00:00:00 2001 From: l3uddz Date: Sat, 10 Mar 2018 08:44:48 +0000 Subject: [PATCH] use debug log level for sent notification messages --- notifications/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/__init__.py b/notifications/__init__.py index c1acab2..903ca31 100644 --- a/notifications/__init__.py +++ b/notifications/__init__.py @@ -49,6 +49,6 @@ class Notifications: if chosen_service and service.NAME.lower() != chosen_service: continue elif service.send(**kwargs): - log.info("Sent notification with %s", service.NAME) + log.debug("Sent notification with %s", service.NAME) except Exception: log.exception("Exception sending notification, kwargs=%r: ", kwargs)