From 47a10d58289e69441c19a19ed52373361b4a7970 Mon Sep 17 00:00:00 2001 From: EstrellaXD Date: Mon, 26 Jan 2026 17:08:29 +0100 Subject: [PATCH] fix: suppress verbose httpx HTTP request logs Co-Authored-By: Claude Opus 4.5 --- backend/src/module/conf/log.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/src/module/conf/log.py b/backend/src/module/conf/log.py index 2d567424..950ea4b6 100644 --- a/backend/src/module/conf/log.py +++ b/backend/src/module/conf/log.py @@ -29,3 +29,6 @@ def setup_logger(level: int = logging.INFO, reset: bool = False): logging.StreamHandler(), ], ) + + # Suppress verbose HTTP request logs from httpx + logging.getLogger("httpx").setLevel(logging.WARNING)