Fixed logging filter issue.

pull/2679/head
morpheus65535 2 months ago
parent cc7a8000e7
commit 90b44802dc

@ -62,7 +62,7 @@ class UnwantedWaitressMessageFilter(logging.Filter):
# no filtering in debug mode or if originating from us
return True
if record.level < logging.ERROR:
if record.levelno < logging.ERROR:
return False
unwantedMessages = [

@ -3,20 +3,13 @@ import logging
from bazarr.app.logger import UnwantedWaitressMessageFilter
def test_true_for_bazarr():
record = logging.makeLogRecord({
"level": logging.INFO,
"msg": "a message from BAZARR for logging"
})
record = logging.LogRecord("", logging.INFO, "", 0, "a message from BAZARR for logging", (), None)
assert UnwantedWaitressMessageFilter().filter(record)
def test_false_below_error():
record = logging.makeLogRecord({
"level": logging.INFO
})
record = logging.LogRecord("", logging.INFO, "", 0, "", (), None)
assert not UnwantedWaitressMessageFilter().filter(record)
def test_true_error_up():
record = logging.makeLogRecord({
"level": logging.CRITICAL
})
record = logging.LogRecord("", logging.CRITICAL, "", 0, "", (), None)
assert UnwantedWaitressMessageFilter().filter(record)
Loading…
Cancel
Save