I use uwsgi to deploy my pyramid project. and also use pyramid_exclog to catch exception log which is expected to logto the file exception.log . But all the log info(include the exception log) was output to the file 'project.log' which was setted in the section of [uwsgi], file production.ini
[uwsgi]
logto = /var/log/project.log
I need your help to make exception info output to the file of exception.log instead of project.log I use the 'pserve' command to start up my project, everything works well. So how to deploy the pyramid_exclog under uwsgi.