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)