Closed
Description
Long story short
When I followed the document here to disable access log. It seems not working.
Expected behaviour
Just use app.make_handler(access_log=None) for disabling access log.
Steps to reproduce
app.make_handler(access_log=None)
web.run_app(app)After I check the source code here. I know I make mistake about the usage of make_handler.
But I think run_app(app, access_log=None) is better and more clear than app.make_handler(access_log=None) in document.