Improve error logging

This commit is contained in:
vvzvlad
2025-04-17 22:22:25 +03:00
parent 30ab46e21f
commit 90c7ff5064
+1 -1
View File
@@ -786,7 +786,7 @@ class PostParser:
return self._sanitize_html(result_html) if result_html else None
except Exception as e:
logger.error(f"reactions_views_parsing_error: {str(e)}")
logger.error(f"reactions_views_parsing_error: {str(e)}", exc_info=True)
return None
def _format_poll(self, poll) -> str: