From c501923f2bd3cb2e164aa8a6abf05408695d7c01 Mon Sep 17 00:00:00 2001 From: Jonathan Wong Date: Fri, 27 Nov 2015 18:13:20 -0800 Subject: [PATCH] Hide Pushalot notifier response logging --- plexpy/notifiers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index c072cefc..a933c840 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -896,9 +896,9 @@ class PUSHALOT(object): response = http_handler.getresponse() request_status = response.status - logger.debug(u"Pushalot response status: %r" % request_status) - logger.debug(u"Pushalot response headers: %r" % response.getheaders()) - logger.debug(u"Pushalot response body: %r" % response.read()) + #logger.debug(u"Pushalot response status: %r" % request_status) + #logger.debug(u"Pushalot response headers: %r" % response.getheaders()) + #logger.debug(u"Pushalot response body: %r" % response.read()) if request_status == 200: logger.info(u"Pushalot notifications sent.")