Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorvaladi committed Nov 13, 2024
1 parent 179098a commit 2410c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedn/network/combiner/hooks/hook_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}
Expand Down

0 comments on commit 2410c32

Please sign in to comment.