aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorVitiko <[email protected]>2023-05-28 21:05:21 -0400
committerVitiko <[email protected]>2023-05-28 21:05:21 -0400
commit77531090b2c2c98d7cbb7f562222d04fcfc66c89 (patch)
tree36649ed95c3e7e5faf883ed456f7141062cfcb38
parent43a6630527c4f2a7413ecdf707d8c4eaffe86b4c (diff)
downloadbazarr-77531090b2c2c98d7cbb7f562222d04fcfc66c89.tar.gz
bazarr-77531090b2c2c98d7cbb7f562222d04fcfc66c89.zip
no log: reduce debug call verbosity
-rw-r--r--libs/subliminal_patch/core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/subliminal_patch/core.py b/libs/subliminal_patch/core.py
index 1e293455b..aa3ec3051 100644
--- a/libs/subliminal_patch/core.py
+++ b/libs/subliminal_patch/core.py
@@ -168,12 +168,12 @@ class _LanguageEquals(list):
for equals in self:
from_, to_ = equals
if from_ in items:
- logger.debug("Adding %s to %s", to_, items)
+ logger.debug("Adding %s to %s item(s) set", to_, len(items))
to_add.append(to_)
new_items = items.copy()
new_items.update(to_add)
- logger.debug("New set: %s", new_items)
+ logger.debug("New set: %s items", len(new_items))
return new_items
def update_subtitle(self, subtitle):