diff options
author | Vitiko <[email protected]> | 2023-05-28 21:05:21 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2023-05-28 21:05:21 -0400 |
commit | 77531090b2c2c98d7cbb7f562222d04fcfc66c89 (patch) | |
tree | 36649ed95c3e7e5faf883ed456f7141062cfcb38 | |
parent | 43a6630527c4f2a7413ecdf707d8c4eaffe86b4c (diff) | |
download | bazarr-77531090b2c2c98d7cbb7f562222d04fcfc66c89.tar.gz bazarr-77531090b2c2c98d7cbb7f562222d04fcfc66c89.zip |
no log: reduce debug call verbosity
-rw-r--r-- | libs/subliminal_patch/core.py | 4 |
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): |