From 95716a2f872a8a3e212519bbe09a726d3dd2782c Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 26 Dec 2025 12:55:19 -0800 Subject: [PATCH] less verbose --- weed/pb/grpc_client_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/pb/grpc_client_server.go b/weed/pb/grpc_client_server.go index 6d09b7f6e..32572d1f2 100644 --- a/weed/pb/grpc_client_server.go +++ b/weed/pb/grpc_client_server.go @@ -115,7 +115,7 @@ func getOrCreateConnection(address string, waitForReady bool, opts ...grpc.DialO existingConnection, found := grpcClients[address] if found { - glog.V(3).Infof("gRPC cache hit for %s (version %d)", address, existingConnection.version) + glog.V(4).Infof("gRPC cache hit for %s (version %d)", address, existingConnection.version) return existingConnection, nil }