From 93dda3c9e5b2afaacde1c47e4ef38c0089f863c6 Mon Sep 17 00:00:00 2001 From: Hellowlol Date: Sun, 26 Apr 2020 22:55:54 +0300 Subject: [PATCH] reduce loglevel --- plexapi/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexapi/library.py b/plexapi/library.py index eb4630aa..b516be85 100644 --- a/plexapi/library.py +++ b/plexapi/library.py @@ -584,7 +584,7 @@ class LibrarySection(PlexObject): matches = [k for t, k in lookup.items() if item in t] if matches: map(result.add, matches); continue # nothing matched; use raw item value - log.warning('Filter value not listed, using raw item value: %s' % item) + log.debug('Filter value not listed, using raw item value: %s' % item) result.add(item) return ','.join(result)