Fix UWSGI logging to stderr

All of uwsgi's logs were going to stderr, while the python logs
were going to stdout. This caused redirection to be unintuitive
by only redirecting the python logs. This change makes all output
stdout instead of it being split half and half with stderr even
though there were no errors.

Change-Id: I825dee6f57eebec154b6a57a4450442bf9151978
This commit is contained in:
Eric Juma 2017-03-02 15:33:41 -05:00
parent 2c5960c183
commit bf52b04ca3
1 changed files with 3 additions and 2 deletions

View File

@ -5,5 +5,6 @@ uwsgi --socket 0.0.0.0:5001 \
--http-chunked-input \
-w mixmatch.wsgi \
--master \
--processes 4 \
--threads 2
--processes 8 \
--threads 1 \
2>&1