Skip to content

Commit

Permalink
Corrected a less-than/greater-than error in the daist stdout logging …
Browse files Browse the repository at this point in the history
…filter.
  • Loading branch information
highvelcty committed Jan 10, 2025
1 parent d76a29d commit 29c3479
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 29c3479

Please sign in to comment.