Skip to content
Snippets Groups Projects
Verified Commit b6acc81a authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Configure logging to console

parent 07265ee9
No related branches found
No related tags found
No related merge requests found
Pipeline #1159 failed
......@@ -538,3 +538,17 @@ BLEACH_STRIP_TAGS = True
# Strip comments, or leave them in.
BLEACH_STRIP_COMMENTS = True
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'console': {
'class': 'logging.StreamHandler',
},
},
'root': {
'handlers': ['console'],
'level': _settings.get("logging.level", "WARNING"),
},
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment