Add log.warning when a channel fails to refresh.

master
voussoir 2020-11-20 16:24:03 -08:00
parent 8de342b054
commit 2bfc1a00d4
1 changed files with 1 additions and 0 deletions

View File

@ -222,6 +222,7 @@ class YCDLDBChannelMixin:
channel.refresh(force=force, commit=commit)
except Exception as exc:
if skip_failures:
self.log.warning(exc)
excs.append(exc)
else:
raise