From: W. Trevor King Date: Sun, 14 Apr 2013 11:14:42 +0000 (-0400) Subject: email: Convert LOG.critical() to LOG.debug() in _decode_header() X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e75ed9673215a4c5cd2b6416e9cb7ec9cf13e450;p=rss2email.git email: Convert LOG.critical() to LOG.debug() in _decode_header() I'd added this to help troubleshoot the function when I was writing it, but obviously the content is not generally critical ;). Signed-off-by: W. Trevor King --- diff --git a/rss2email/email.py b/rss2email/email.py index a5818cd..7418c8d 100644 --- a/rss2email/email.py +++ b/rss2email/email.py @@ -177,7 +177,7 @@ def _decode_header(header): if isinstance(header, _Header): return str(header) chunks = [] - _LOG.critical(_email_header.decode_header(header)) + _LOG.debug(_email_header.decode_header(header)) for chunk,charset in _email_header.decode_header(header): if charset is None: if isinstance(chunk, bytes):