From d613b949d596d85555d62c389ce84f95ef0f284d Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Thu, 4 Aug 2022 09:34:02 -0400 Subject: [PATCH] [20] add smart url debug --- VERSION | 2 +- modules/builder.py | 2 ++ modules/operations.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3b939f6d..3f3a7554 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.2-develop19 +1.17.2-develop20 diff --git a/modules/builder.py b/modules/builder.py index b0c44a41..74399567 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -1896,6 +1896,8 @@ class CollectionBuilder: else: raise Failed(f"{self.Type} Error: No Filter Created") + if display: + logger.debug(f"Smart URL: {filter_url}") return type_key, filter_details, filter_url def validate_attribute(self, attribute, modifier, final, data, validate, plex_search=False): diff --git a/modules/operations.py b/modules/operations.py index 57262d33..15024604 100644 --- a/modules/operations.py +++ b/modules/operations.py @@ -24,6 +24,7 @@ class Operations: logger.debug(f"Assets For All: {self.library.assets_for_all}") logger.debug(f"Delete Collections With Less: {self.library.delete_collections_with_less}") logger.debug(f"Delete Unmanaged Collections: {self.library.delete_unmanaged_collections}") + logger.debug(f"Show Unmanaged Collections: {self.library.show_unmanaged}") logger.debug(f"Mass Genre Update: {self.library.mass_genre_update}") logger.debug(f"Mass Audience Rating Update: {self.library.mass_audience_rating_update}") logger.debug(f"Mass Critic Rating Update: {self.library.mass_critic_rating_update}")