From 1e75f6530ebd5aa9a71dce7a51288bc3394460de Mon Sep 17 00:00:00 2001 From: sixeight Date: Tue, 9 Dec 2025 08:45:40 -0800 Subject: [PATCH 1/2] bug: disable unicorn logger propagation. --- src/fastapi_cli/utils/cli.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/fastapi_cli/utils/cli.py b/src/fastapi_cli/utils/cli.py index f6805e7c..694f6420 100644 --- a/src/fastapi_cli/utils/cli.py +++ b/src/fastapi_cli/utils/cli.py @@ -43,7 +43,11 @@ def get_uvicorn_log_config() -> Dict[str, Any]: }, }, "loggers": { - "uvicorn": {"handlers": ["default"], "level": "INFO"}, + "uvicorn": { + "handlers": ["default"], + "level": "INFO", + "propagte": False, + }, "uvicorn.error": {"level": "INFO"}, "uvicorn.access": { "handlers": ["access"], From be7b69907b9ac7d15ff7f250922aad805c894b84 Mon Sep 17 00:00:00 2001 From: sixeight Date: Tue, 9 Dec 2025 09:37:28 -0800 Subject: [PATCH 2/2] bug: disable unicorn logger propagation. --- src/fastapi_cli/utils/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_cli/utils/cli.py b/src/fastapi_cli/utils/cli.py index 694f6420..1380c413 100644 --- a/src/fastapi_cli/utils/cli.py +++ b/src/fastapi_cli/utils/cli.py @@ -46,7 +46,7 @@ def get_uvicorn_log_config() -> Dict[str, Any]: "uvicorn": { "handlers": ["default"], "level": "INFO", - "propagte": False, + "propagate": False, }, "uvicorn.error": {"level": "INFO"}, "uvicorn.access": {