summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2021-08-18 07:18:05 -0400
committermorpheus65535 <[email protected]>2021-08-18 07:18:05 -0400
commit79621a08716d64dff3a80b00ef15acd605068387 (patch)
tree772b538ed953b51e8196e49de948027e80b299a0
parent2f6206f3a66ea2c424cfc39ca2100d95bd4b062d (diff)
downloadbazarr-79621a08716d64dff3a80b00ef15acd605068387.tar.gz
bazarr-79621a08716d64dff3a80b00ef15acd605068387.zip
Fixed debug logging when no episode are returned from database for a specific series because they are ignored. #1507
-rw-r--r--bazarr/get_subtitle.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bazarr/get_subtitle.py b/bazarr/get_subtitle.py
index ceac880b6..cf25a0fb8 100644
--- a/bazarr/get_subtitle.py
+++ b/bazarr/get_subtitle.py
@@ -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()