Dial down logging for failed pushers

This commit is contained in:
David Baker 2015-03-06 15:32:38 +00:00
parent a2c6f25190
commit be9dafcd37

View File

@ -109,7 +109,7 @@ class HttpPusher(Pusher):
try:
resp = yield self.httpCli.post_json_get_json(self.url, notification_dict)
except:
logger.exception("Failed to push %s ", self.url)
logger.warn("Failed to push %s ", self.url)
defer.returnValue(False)
rejected = []
if 'rejected' in resp: