diff --git a/tt/bot.py b/tt/bot.py index b66e4aa3e..74285aa48 100644 --- a/tt/bot.py +++ b/tt/bot.py @@ -56,4 +56,8 @@ async def webhook(request: Request): and the `settings.host` and `settings.port` variables are the host and port to run the server on, respectively """ - uvicorn.run(app, host=settings.host, port=int(settings.port)) + uvicorn.run( + app, + host=settings.host, + port=int(settings.port), + log_level="CRITICAL")