I would like to disable the logging in this picture (in the red box):

I use turbogears 2.3.7. When I start gearbox server and access my url http://localhost:8778. in log will show access url.
For example:
127.0.0.1 - - [11/Mar/2016 16:59:06] "GET /css/bootstrap.min.css HTTP/1.1" 304 0
127.0.0.1 - - [11/Mar/2016 16:59:06] "GET /css/style.css HTTP/1.1" 304 0
127.0.0.1 - - [11/Mar/2016 16:59:06] "GET /css/style.css HTTP/1.1" 304 0
127.0.0.1 - - [11/Mar/2016 16:59:06] "GET /css/style.css HTTP/1.1" 304 0
This is caused by the fact that you are serving app with the
wsgirefserver. You can see that by the fact that you haveuse = egg:gearbox#wsgirefinside your[server:main]section of thedevelopment.inifile.The
wsgirefserver, being only meant for development doesn't have a proper logging configuration, and just outputs everything tostderr.If you want to manage logging you can switch to a better suited server like Waitress.
Just
pip install waitressand then in yourdevelopment.iniput something like:in place of