From: Stefan Kögl Date: Sun, 26 May 2013 10:52:24 +0000 (+0200) Subject: reduce log severity for errors during podcast updates X-Git-Url: https://repo.or.cz/w/mygpo.git/commitdiff_plain/b4f1998bf3b96bb2a7da3f4cd465ef396947c947 reduce log severity for errors during podcast updates --- diff --git a/mygpo/data/feeddownloader.py b/mygpo/data/feeddownloader.py index 4ee57b95..5585044c 100755 --- a/mygpo/data/feeddownloader.py +++ b/mygpo/data/feeddownloader.py @@ -318,7 +318,7 @@ class PodcastUpdater(object): except (urllib2.HTTPError, urllib2.URLError, ValueError, httplib.BadStatusLine) as e: - logger.exception('Exception while updating podcast') + logger.warn('Exception while updating podcast: %s', str(e)) @repeat_on_conflict(['podcast'])