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: