aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-10 20:33:19 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-10 20:33:19 +0200
commit2b61a097b72d23472942615fb2682886e42f8280 (patch)
tree1bb06adeca02d6a5668c944e95f0a5fcc519c609
parentAdd `gunicorn` logs to `stdout`. (diff)
Use proper path to `StreamHandler`.
-rw-r--r--pysite/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/settings.py b/pysite/settings.py
index 14019ba8..2f9a75e3 100644
--- a/pysite/settings.py
+++ b/pysite/settings.py
@@ -198,7 +198,7 @@ LOGGING = {
'handlers': {
'gunicorn': {
'level': 'INFO',
- 'class': 'logging.handlers.StreamHandler',
+ 'class': 'logging.StreamHandler',
'formatters': 'default'
}
},