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, + }, }, }