]> kaliko git repositories - sid.git/commitdiff
feeds: Lazy log formating fixed-feeds
authorkaliko <kaliko@azylum.org>
Sat, 24 Oct 2020 17:57:55 +0000 (19:57 +0200)
committerkaliko <kaliko@azylum.org>
Sat, 24 Oct 2020 17:57:55 +0000 (19:57 +0200)
sid/feeds.py

index 1d6ed78f6e9a75b6af1744e1f066073e4eaa074f..dc979e5e7c206d51ad5c30449e9d99cbf280606b 100644 (file)
@@ -125,9 +125,9 @@ class FeedMonitor(threading.Thread):
                 try:
                     self.new_posts(feed)
                 except ConnectionError as err:  # Non fatal exception
-                    self.plugin.log.error(f'connection error on {feed}: {err}')
+                    self.plugin.log.error('connection error on %s: %s', feed, err)
                 except URLError as err:  # Non fatal exception
-                    self.plugin.log.error(f'error for {feed}: {err.reason}')
+                    self.plugin.log.error('error for "%s": %s', feed, err.reason)
                 except Exception as err:  # Unknown execption, killing thread anyway
                     self.plugin.log.error('feeds thread crashed: %s', err)
                     self.plugin.log.error(''.join(traceback.format_exc()))