fix(server): Disable access logs
This commit is contained in:
parent
e85be36bd2
commit
cc2fa311dd
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue