From 9aea663754ed56c5d4f34ac3bc03f15de0aa426c Mon Sep 17 00:00:00 2001 From: Jonathan Wong Date: Tue, 17 Nov 2015 23:22:12 -0800 Subject: [PATCH] Logger info for email notification sent --- plexpy/notifiers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index 11798ff3..607cd3b0 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -1348,6 +1348,8 @@ class Email(object): mailserver.sendmail(plexpy.CONFIG.EMAIL_FROM, plexpy.CONFIG.EMAIL_TO, message.as_string()) mailserver.quit() + + logger.info(u"Email notifications sent.") return True except Exception, e: