From 539003045050a2be5dfae96d2056c4e3758549e6 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 5 May 2021 10:50:40 -0400 Subject: [PATCH] Collectionless display change --- modules/plex.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/plex.py b/modules/plex.py index 1c56927c..dffac507 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -443,13 +443,16 @@ class PlexAPI: for pre in data["exclude_prefix"]: if col.title.startswith(pre) or (col.titleSort and col.titleSort.startswith(pre)): keep_collection = False + logger.info(f"Collection Excluded: {col.title} by prefix {pre}") break if keep_collection: for ext in data["exclude"]: if col.title == ext or (col.titleSort and col.titleSort == ext): keep_collection = False + logger.info(f"Collection Excluded: {col.title} by exact match") break if keep_collection: + logger.info(f"Collection Passed: {col.title}") good_collections.append(col.index) all_items = self.get_all() length = 0