From: kaliko Date: Sat, 24 Oct 2020 17:57:55 +0000 (+0200) Subject: feeds: Lazy log formating X-Git-Tag: 0.2.0~1 X-Git-Url: http://git.kaliko.me/?p=sid.git;a=commitdiff_plain;h=8be15ab374b0b1babafcdf01e98756c3c957c7f0 feeds: Lazy log formating --- diff --git a/sid/feeds.py b/sid/feeds.py index 1d6ed78..dc979e5 100644 --- a/sid/feeds.py +++ b/sid/feeds.py @@ -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()))