Unverified Commit cc2fa311 authored by Michael Poutre's avatar Michael Poutre
Browse files

fix(server): Disable access logs

parent e85be36b
......@@ -603,7 +603,7 @@ class PromptServer():
await self.send(*msg)
async def start(self, address, port, verbose=True, call_on_start=None):
runner = web.AppRunner(self.app)
runner = web.AppRunner(self.app, access_log=None)
await runner.setup()
site = web.TCPSite(runner, address, port)
await site.start()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment