fix(logger config):

This commit is contained in:
Alexander Myasoedov
2025-03-13 18:12:21 +02:00
parent bb2e0e7517
commit 85216ad106
+10
View File
@@ -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,
},
},
}