Skip to content

Commit

Permalink
fix: less instrusive logging configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanPedroGHM committed Sep 21, 2023
1 parent 0dfcc6f commit 75bfca1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion perun/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ def init_logging(level: str) -> logging.Logger:
"""
logConfig = {
"version": 1,
"root": {"handlers": ["console"], "level": level},
"loggers": {"perun": {"level": level, "handlers": ["console"]}},
"handlers": {
"console": {
"formatter": "std_out",
"class": "logging.StreamHandler",
"level": "DEBUG",
"stream": "ext://sys.stdout",
}
},
"formatters": {
Expand Down

0 comments on commit 75bfca1

Please sign in to comment.