[20] add smart url debug

This commit is contained in:
meisnate12 2022-08-04 09:34:02 -04:00
parent 82b006bfa1
commit d613b949d5
3 changed files with 4 additions and 1 deletions

View file

@ -1 +1 @@
1.17.2-develop19
1.17.2-develop20

View file

@ -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):

View file

@ -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}")