mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-16 14:25:02 -05:00
Do not log ERROR when show isn't in list. Log WARNING instead.
Prevents the error log in webinterface from filling up, if there are downloads in your watch folder, which aren't in SB list
This commit is contained in:
parent
ee458bd211
commit
b2941d6bc0
@ -793,7 +793,7 @@ class PostProcessor(object):
|
|||||||
(show, season, episodes, quality, version) = self._find_info()
|
(show, season, episodes, quality, version) = self._find_info()
|
||||||
if not show:
|
if not show:
|
||||||
self._log(u"This show isn't in your list, you need to add it to SB before post-processing an episode",
|
self._log(u"This show isn't in your list, you need to add it to SB before post-processing an episode",
|
||||||
logger.ERROR)
|
logger.WARNING)
|
||||||
raise exceptions.PostProcessingFailed()
|
raise exceptions.PostProcessingFailed()
|
||||||
elif season == None or not episodes:
|
elif season == None or not episodes:
|
||||||
self._log(u"Not enough information to determine what episode this is", logger.DEBUG)
|
self._log(u"Not enough information to determine what episode this is", logger.DEBUG)
|
||||||
|
Loading…
Reference in New Issue
Block a user