fix(server): Disable access logs

This commit is contained in:
Michael Poutre 2023-09-08 21:11:53 -07:00
parent e85be36bd2
commit cc2fa311dd
No known key found for this signature in database
GPG Key ID: ACEAC6CFD77EB15E
1 changed files with 1 additions and 1 deletions

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