Skip to content

Commit

Permalink
Less verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
nx10 committed May 22, 2024
1 parent c9ae8b8 commit 19f08e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/styxdefs/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(self, data_dir: InputPathType | None = None) -> None:
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
"[%(levelname)s.1s] %(message)s"
)
ch.setFormatter(formatter)
self.logger.addHandler(ch)
Expand Down

0 comments on commit 19f08e9

Please sign in to comment.