From 34e548cc15eb58762bdfea32fa35573c83b0bd5e Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 20 Sep 2015 14:03:47 +0200 Subject: [PATCH] Don't log some Twitter auth stuff. --- plexpy/notifiers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index 44c21b0c..e780fef7 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -975,7 +975,7 @@ class TwitterNotifier(object): logger.info('Generating and signing request for an access token using key ' + key) oauth_consumer = oauth.Consumer(key=self.consumer_key, secret=self.consumer_secret) - logger.info('oauth_consumer: ' + str(oauth_consumer)) + # logger.debug('oauth_consumer: ' + str(oauth_consumer)) oauth_client = oauth.Client(oauth_consumer, token) logger.info('oauth_client: ' + str(oauth_client)) resp, content = oauth_client.request(self.ACCESS_TOKEN_URL, method='POST', body='oauth_verifier=%s' % key)