Fixed debug logging when no episode are returned from database for a specific series because they are ignored. #1507

This commit is contained in:
morpheus65535 2021-08-18 07:18:05 -04:00
parent 2f6206f3a6
commit 79621a0871
1 changed files with 2 additions and 1 deletions

View File

@ -729,7 +729,8 @@ def series_download_subtitles(no):
.where(reduce(operator.and_, conditions))\
.dicts()
if not episodes_details:
logging.debug("BAZARR no episode for that sonarrSeriesId can be found in database:", str(no))
logging.debug("BAZARR no episode for that sonarrSeriesId have been found in database or they have all been "
"ignored because of monitored status, series type or series tags: {}".format(no))
return
providers_list = get_providers()