Skip to content

Commit

Permalink
Reverted console log level
Browse files Browse the repository at this point in the history
  • Loading branch information
thisistheplace committed Jun 3, 2024
1 parent 5452c09 commit 80c4a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylesa/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def setup_logging(level: enum.Enum):
# Log to the console
console_handler = logging.StreamHandler()
console_handler.setFormatter(CustomFormatter())
console_handler.setLevel(logging.WARNING)
console_handler.setLevel(level)
handlers.append(console_handler)

# Set format on handlers and add them to the root
Expand Down

0 comments on commit 80c4a1e

Please sign in to comment.