remove some debug

This commit is contained in:
Antonio J. Delgado 2024-12-29 11:51:59 +02:00
parent cf03a5d3ce
commit e86a9568c8

View file

@ -211,10 +211,6 @@ class ImapFilter:
part = str(data[1])
message = email.message_from_string(part)
decoded_field = email.header.decode_header(message.get(mfilter['field'], ""))
self._log.debug(
"Decoded field: %s",
decoded_field
)
for raw_field_data in decoded_field:
if isinstance(raw_field_data[0], str):
field_data = raw_field_data[0]