Skip to content

Commit

Permalink
Remove INFO from playground python logger
Browse files Browse the repository at this point in the history
  • Loading branch information
hjtran committed Jan 8, 2024
1 parent 38720a3 commit a41fd2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playground/infrastructure/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def setup_logger():
)

stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.addFilter(lambda record: record.levelno in (INFO, WARNING))
stdout_handler.addFilter(lambda record: record.levelno in (WARNING,))
stdout_handler.setFormatter(formatter)

stderr_handler = logging.StreamHandler(sys.stderr)
Expand Down

0 comments on commit a41fd2c

Please sign in to comment.