[Fixed]-How to disable request logging in Django and uWSGI?

27👍

What does your uwsgi.ini look like? That’s where you’d want to disable logging.

Set: disable-logging=True

Here’s the docs:

http://uwsgi-docs.readthedocs.org/en/latest/Options.html#disable-logging

5👍

Or from the console with:

uwsgi --disable-logging

Leave a comment