From 0e39d9274f9531fb564c6661456ecb36a4326cad Mon Sep 17 00:00:00 2001 From: Daniel Dourvaris Date: Fri, 3 Apr 2020 22:50:43 +0200 Subject: [PATCH] notifications: reduce logging for email notifications. --- rhodecode/model/notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rhodecode/model/notification.py b/rhodecode/model/notification.py index 96613a32..4ca084c8 100644 --- a/rhodecode/model/notification.py +++ b/rhodecode/model/notification.py @@ -333,7 +333,7 @@ class EmailNotificationModel(BaseModel): } premailer_instance = premailer.Premailer( - cssutils_logging_level=logging.DEBUG, + cssutils_logging_level=logging.WARNING, cssutils_logging_handler=logging.getLogger().handlers[0] if logging.getLogger().handlers else None, )