Add log.warning when a channel fails to refresh.
This commit is contained in:
parent
8de342b054
commit
2bfc1a00d4
1 changed files with 1 additions and 0 deletions
|
@ -222,6 +222,7 @@ class YCDLDBChannelMixin:
|
||||||
channel.refresh(force=force, commit=commit)
|
channel.refresh(force=force, commit=commit)
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
if skip_failures:
|
if skip_failures:
|
||||||
|
self.log.warning(exc)
|
||||||
excs.append(exc)
|
excs.append(exc)
|
||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Reference in a new issue