bug fixing

This commit is contained in:
2026-01-26 13:24:40 +01:00
parent 29a7f12abe
commit 37eb03583c
11 changed files with 493 additions and 48 deletions

View File

@@ -66,7 +66,7 @@ class EmailGenerator:
# Generate plain text version
text = self._generate_text_version(entries, date_str, subject)
logger.info(f"Generated email with {len(entries)} articles")
logger.debug(f"Generated email with {len(entries)} articles")
return html_inlined, text

View File

@@ -63,7 +63,7 @@ class EmailSender:
# Send email
server.send_message(msg)
logger.info(f"Email sent successfully to {self.config.to}")
logger.debug(f"Email sent successfully to {self.config.to}")
return True
finally: