From 64a505cc71fe5924a8f28c31ea93bee47474a197 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Fri, 18 Apr 2025 05:26:31 +0300 Subject: [PATCH] change log level --- post_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post_parser.py b/post_parser.py index 51b130f..fce6163 100644 --- a/post_parser.py +++ b/post_parser.py @@ -534,7 +534,7 @@ class PostParser: test_fwd = self._format_forward_info(message) test_reply = self._format_reply_info(message) - logger.debug(f"Forward info: {test_fwd}, Reply info: {test_reply}") + logger.error(f"Forward info: {test_fwd}, Reply info: {test_reply}") if forward_html := self._format_forward_info(message): content_body.append(forward_html) elif reply_html := self._format_reply_info(message): content_body.append(reply_html)