fix(logging): suppress uvicorn access logs and prevent duplicate logging
All checks were successful
Build and Push Docker Image / build (push) Successful in 14s

This commit is contained in:
2026-01-02 13:20:35 -05:00
parent d80eac4a0d
commit f48dafc88f
2 changed files with 11 additions and 8 deletions

View File

@@ -26,6 +26,7 @@ def setup_logging() -> None:
logger = logging.getLogger("grist_mcp")
logger.setLevel(level)
logger.propagate = False # Prevent duplicate logs to root logger
# Only add handler if not already configured
if not logger.handlers: