From 8d5f62aa5d3747fb6c773eeb5b62517ce1697f8b Mon Sep 17 00:00:00 2001 From: John Turner Date: Sun, 7 Sep 2025 00:50:39 -0400 Subject: disable aiohttp logging --- pypaste/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypaste/__main__.py b/pypaste/__main__.py index 8968166..4b18c9d 100644 --- a/pypaste/__main__.py +++ b/pypaste/__main__.py @@ -351,7 +351,7 @@ async def main() -> int: [web.get("/paste/{key}", pypaste.download), web.post("/paste", pypaste.upload)] ) - runner = web.AppRunner(app) + runner = web.AppRunner(app, logger=None) await runner.setup() -- cgit v1.2.3