From 456ee59b4fdb1153860f3f99cc05bef0e978ea72 Mon Sep 17 00:00:00 2001 From: jason <30179199+chenbyby@users.noreply.github.com> Date: Thu, 28 May 2026 12:15:30 +0800 Subject: [PATCH] chore(core): replace startup print with logger in main --- core/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/app/main.py b/core/app/main.py index 71e51c2..1e31802 100644 --- a/core/app/main.py +++ b/core/app/main.py @@ -132,7 +132,7 @@ async def serve(): server_address = os.getenv("GRPC_SERVER_ADDRESS", "localhost:50053") host, port = server_address.split(":") - print(f"Starting gRPC server at {server_address}...") + _LOGGER.info("Starting gRPC server at %s...", server_address) await server.start(host, int(port)) try: