Skip to content

Commit

Permalink
Fix log filter level check.
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar007 committed Sep 16, 2024
1 parent 695887b commit e669c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/app/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def filter(self, record):
# no filtering in debug mode or if originating from us
return True

if record.level != loggin.ERROR:
if record.level < logging.ERROR:
return False

unwantedMessages = [
Expand Down

0 comments on commit e669c1c

Please sign in to comment.