From e75ed9673215a4c5cd2b6416e9cb7ec9cf13e450 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 14 Apr 2013 07:14:42 -0400 Subject: [PATCH] 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 --- rss2email/email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.26.2