mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-08 02:53:38 +00:00
Added more debug info to post-processor
This commit is contained in:
parent
ab124158a4
commit
7194c3e197
1 changed files with 6 additions and 0 deletions
|
@ -834,11 +834,17 @@ class PostProcessor(object):
|
||||||
for indexer in sickbeard.indexerApi().indexers:
|
for indexer in sickbeard.indexerApi().indexers:
|
||||||
self.indexer = int(indexer)
|
self.indexer = int(indexer)
|
||||||
|
|
||||||
|
self._log(u"Searching " + sickbeard.indexerApi(self.indexer).name + ", trying to auto-detect Indexer for "
|
||||||
|
"show")
|
||||||
|
|
||||||
# try to find the file info
|
# try to find the file info
|
||||||
(indexer_id, season, episodes) = self._find_info()
|
(indexer_id, season, episodes) = self._find_info()
|
||||||
if indexer_id and season != None and episodes:
|
if indexer_id and season != None and episodes:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
self._log(u"Can't find thhe show on " + sickbeard.indexerApi(self.indexer).name + ", trying next "
|
||||||
|
"indexer", logger.WARNING)
|
||||||
|
|
||||||
if not indexer_id or season == None or not episodes:
|
if not indexer_id or season == None or not episodes:
|
||||||
self._log(u"Can't find thhe show on any of the Indexers, skipping",
|
self._log(u"Can't find thhe show on any of the Indexers, skipping",
|
||||||
logger.WARNING)
|
logger.WARNING)
|
||||||
|
|
Loading…
Reference in a new issue