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 <wking@tremily.us>
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):