From a321646e74c73dcea19f110cabfa7959271a5925 Mon Sep 17 00:00:00 2001 From: Lantao Liu Date: Thu, 26 Apr 2018 01:21:20 -0700 Subject: [PATCH] Add level to remote client glog. Signed-off-by: Lantao Liu --- pkg/kubelet/remote/remote_runtime.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/remote/remote_runtime.go b/pkg/kubelet/remote/remote_runtime.go index 109a1dc5c36..5720bee5a67 100644 --- a/pkg/kubelet/remote/remote_runtime.go +++ b/pkg/kubelet/remote/remote_runtime.go @@ -40,7 +40,7 @@ type RemoteRuntimeService struct { // NewRemoteRuntimeService creates a new internalapi.RuntimeService. func NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (internalapi.RuntimeService, error) { - glog.Infof("Connecting to runtime service %s", endpoint) + glog.V(3).Infof("Connecting to runtime service %s", endpoint) addr, dailer, err := util.GetAddressAndDialer(endpoint) if err != nil { return nil, err