From 2410c3269f7be942da150484fe9bf4989ba8508f Mon Sep 17 00:00:00 2001 From: viktorvaladi Date: Wed, 13 Nov 2024 15:37:41 +0100 Subject: [PATCH] change log level --- fedn/network/combiner/hooks/hook_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedn/network/combiner/hooks/hook_client.py b/fedn/network/combiner/hooks/hook_client.py index f93ce175d..12ec82472 100644 --- a/fedn/network/combiner/hooks/hook_client.py +++ b/fedn/network/combiner/hooks/hook_client.py @@ -46,7 +46,7 @@ def provided_functions(self, server_functions: str): return response.available_functions except grpc.RpcError as rpc_error: if rpc_error.code() == grpc.StatusCode.UNAVAILABLE: - logger.info("Server-functions container is unavailable; using default implementations.") + logger.warning("Server-functions container is unavailable; using default implementations.") else: logger.error(f"gRPC error: {rpc_error.code().name} - {rpc_error.details()}") return {}