Skip to content

Commit

Permalink
fix: A less-than/greater-than error in the daist stdout logging filte…
Browse files Browse the repository at this point in the history
…r. (#10242)
  • Loading branch information
highvelcty authored Feb 5, 2025
1 parent d76a29d commit cf129c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion performance/daist/daist/framework/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, level):
self._level = level

def filter(self, record: logging.LogRecord) -> bool:
return record.levelno <= self._level
return record.levelno >= self._level


def start(path: Path, file_level: int, stdout_level: int):
Expand Down

0 comments on commit cf129c8

Please sign in to comment.