make the removing pods log standardized

pull/6/head
Ke Zhang 2016-08-01 18:41:40 +08:00
parent 4fdde68f78
commit e143c38310
1 changed files with 1 additions and 1 deletions

View File

@ -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 {