We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 198f3aa commit 1385d51Copy full SHA for 1385d51
barkr/connections/rss.py
@@ -103,7 +103,7 @@ def _fetch(self) -> list[Message]:
103
try:
104
feed = feedparser.parse(self.feed_url)
105
except Exception as e: # pylint: disable=broad-exception-caught
106
- logger.error("Error fetching RSS feed: %s", e)
+ logger.error("Error fetching RSS feed (%s): %s", self.name, e)
107
return []
108
109
logger.info("Fetched RSS feed successfully!")
0 commit comments