mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-10 19:35:08 -05:00
Fix for show parsing errors to be displayed via debug logs now instead as a warning.
This commit is contained in:
parent
933fad20c7
commit
0e3495d30f
@ -135,7 +135,6 @@ class NameParser(object):
|
||||
break
|
||||
else:
|
||||
time.sleep(0.05)
|
||||
|
||||
raise InvalidShowException(
|
||||
"Unable to parse " + name.encode(sickbeard.SYS_ENCODING, 'xmlcharrefreplace'))
|
||||
|
||||
|
@ -281,10 +281,10 @@ class GenericProvider:
|
||||
myParser = NameParser(False, convert=True)
|
||||
parse_result = myParser.parse(title)
|
||||
except InvalidNameException:
|
||||
logger.log(u"Unable to parse the filename " + title + " into a valid episode", logger.WARNING)
|
||||
logger.log(u"Unable to parse the filename " + title + " into a valid episode", logger.DEBUG)
|
||||
continue
|
||||
except InvalidShowException:
|
||||
logger.log(u"Unable to parse the filename " + title + " into a valid show", logger.WARNING)
|
||||
logger.log(u"Unable to parse the filename " + title + " into a valid show", logger.DEBUG)
|
||||
continue
|
||||
|
||||
showObj = parse_result.show
|
||||
|
Loading…
Reference in New Issue
Block a user