From 85216ad106f0ce3fb58df783035fdde692cc51cc Mon Sep 17 00:00:00 2001 From: Alexander Myasoedov Date: Thu, 13 Mar 2025 18:12:21 +0200 Subject: [PATCH] fix(logger config): --- agentic_security/logutils.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/agentic_security/logutils.py b/agentic_security/logutils.py index ca28f3b..8d8ad0a 100644 --- a/agentic_security/logutils.py +++ b/agentic_security/logutils.py @@ -49,6 +49,16 @@ LOGGING_CONFIG = { "handlers": ["rich"], "propagate": True, }, + "httpx": { # Disable httpx logging + "level": "WARNING", # Suppress DEBUG and INFO messages from httpx + "handlers": [], + "propagate": False, + }, + "uvicorn.access": { # Disable uvicorn.access logging + "level": "WARNING", # Suppress DEBUG and INFO messages from uvicorn.access + "handlers": [], + "propagate": False, + }, }, }