fix(server): Disable access logs

This commit is contained in:
Michael Poutre 2023-09-08 21:11:53 -07:00
parent 4eef469698
commit 576e52f0b0

View File

@ -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()