Commit e143c383 authored by Ke Zhang's avatar Ke Zhang

make the removing pods log standardized

parent 4fdde68f
...@@ -265,7 +265,7 @@ func (s *podStorage) merge(source string, change interface{}) (adds, updates, de ...@@ -265,7 +265,7 @@ func (s *podStorage) merge(source string, change interface{}) (adds, updates, de
updatePodsFunc(update.Pods, pods, pods) updatePodsFunc(update.Pods, pods, pods)
case kubetypes.REMOVE: 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 { for _, value := range update.Pods {
name := kubecontainer.GetPodFullName(value) name := kubecontainer.GetPodFullName(value)
if existing, found := pods[name]; found { if existing, found := pods[name]; found {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment