[Answered ]-Don't fail if log files are unavailable

2👍

Check the value of logging.raiseExceptions. This is set to True by default, as that’s what you want for development and test environments. If you set it to False, which is normally what you want for production environments, then logging errors should be silently ignored (swallowed). See the documentation for more information.

0👍

check for ps aux | grep 'uwsgi'. Give permission to corresponding user.

sudo chown <user> <logfile>

Leave a comment