Skip to content

Commit

Permalink
Merge pull request #182 from asmorodskyi/fix_logs
Browse files Browse the repository at this point in the history
Fix broken logging
  • Loading branch information
asmorodskyi authored Jan 9, 2023
2 parents 6da895f + 930a1fc commit 3968d5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion container-startup
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ case "$CMD" in
;;
"run")
python3 manage.py migrate
uwsgi --enable-threads --http-socket 0.0.0.0:8000 --plugins python3 --log INFO --module webui.wsgi --static-map /static=/pcw/ocw/static
uwsgi --enable-threads --http-socket 0.0.0.0:8000 --plugins python3 --module webui.wsgi --static-map /static=/pcw/ocw/static
;;
"check")
python3 manage.py check
Expand Down
2 changes: 1 addition & 1 deletion webui/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
'handlers': ['console'],
},
'ocw': {
'level': 'DEBUG',
'level': 'INFO',
'handlers': ['console'],
'propagate': False,
}
Expand Down

0 comments on commit 3968d5c

Please sign in to comment.