Skip to content

Commit

Permalink
fix: logging level default value
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomakela committed Sep 5, 2024
1 parent 93f090e commit 42c91a1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kukkuu/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,10 @@
"console": {"class": "logging.StreamHandler", "formatter": "timestamped_named"}
},
"loggers": {
"": {"handlers": ["console"], "level": env("KUKKUU_DEFAULT_LOGGING_LEVEL")}
"": {
"handlers": ["console"],
"level": env("KUKKUU_DEFAULT_LOGGING_LEVEL", None, "INFO"),
}
},
}

Expand Down

0 comments on commit 42c91a1

Please sign in to comment.