Skip to content

Commit b8135d5

Browse files
authored
Merge pull request #465 from pkkid/remove_warning
reduce loglevel
2 parents c4091b5 + 93dda3c commit b8135d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plexapi/library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ def _cleanSearchFilter(self, category, value, libtype=None):
584584
matches = [k for t, k in lookup.items() if item in t]
585585
if matches: map(result.add, matches); continue
586586
# nothing matched; use raw item value
587-
log.warning('Filter value not listed, using raw item value: %s' % item)
587+
log.debug('Filter value not listed, using raw item value: %s' % item)
588588
result.add(item)
589589
return ','.join(result)
590590

0 commit comments

Comments
 (0)