0

I want to cancel Django to show me those web server requests, it getting to my uwsgi.log file of my application and i can't find where to set it off. enter image description here

I tried looking at the documentation of django but couldn't find

  • Does this answer your question? [How can I disable logging while running unit tests in Python Django?](https://stackoverflow.com/questions/5255657/how-can-i-disable-logging-while-running-unit-tests-in-python-django) – Amir reza Riahi Mar 09 '23 at 12:22
  • sadly, not answering my question – Yotam Yehiely Mar 09 '23 at 12:46
  • Are you using uswgi as your wsgi server? If so you should check uwsgi documentation to fine-tune their logging level or even shut it down completely. – Ramon Moraes Mar 09 '23 at 13:10

1 Answers1

0

Set disable-logging=True in your uwsgi.ini file.

Documentation Ref

Ali Ayad
  • 38
  • 1
  • 5