From e143c3831052d5f633c96568f94b6eb1e006caf9 Mon Sep 17 00:00:00 2001 From: Ke Zhang Date: Mon, 1 Aug 2016 18:41:40 +0800 Subject: [PATCH] make the removing pods log standardized --- pkg/kubelet/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/config/config.go b/pkg/kubelet/config/config.go index f91d1978773..32e4a77f202 100644 --- a/pkg/kubelet/config/config.go +++ b/pkg/kubelet/config/config.go @@ -265,7 +265,7 @@ func (s *podStorage) merge(source string, change interface{}) (adds, updates, de updatePodsFunc(update.Pods, pods, pods) case kubetypes.REMOVE: - glog.V(4).Infof("Removing a pod %v", update) + glog.V(4).Infof("Removing pods from source %s : %v", source, update.Pods) for _, value := range update.Pods { name := kubecontainer.GetPodFullName(value) if existing, found := pods[name]; found {