We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc313aa commit c3c9323Copy full SHA for c3c9323
launcher.py
@@ -66,7 +66,7 @@ async def main() -> None:
66
server_config = core.CONFIG.get("WEBSERVER")
67
if server_config:
68
app: Application = Application(bot=bot)
69
- config: uvicorn.Config = uvicorn.Config(app, host=server_config["host"], port=server_config["port"])
+ config: uvicorn.Config = uvicorn.Config(app, host=server_config["host"], port=server_config["port"], no_access_log=True)
70
server: uvicorn.Server = uvicorn.Server(config)
71
72
tasks.add(asyncio.create_task(server.serve()))
0 commit comments