Commit bc69cca7 authored by Yu-Ju Hong's avatar Yu-Ju Hong

Reduce noise in kubelet.log

parent 6e4f494a
...@@ -268,7 +268,7 @@ func (kl *Kubelet) getPodVolumesFromDisk() map[string]cleaner { ...@@ -268,7 +268,7 @@ func (kl *Kubelet) getPodVolumesFromDisk() map[string]cleaner {
} }
for _, volume := range volumes { for _, volume := range volumes {
identifier := fmt.Sprintf("%s/%s", podUID, volume.Name) identifier := fmt.Sprintf("%s/%s", podUID, volume.Name)
glog.V(4).Infof("Making a volume.Unmounter for volume %s/%s of pod %s", volume.Kind, volume.Name, podUID) glog.V(5).Infof("Making a volume.Unmounter for volume %s/%s of pod %s", volume.Kind, volume.Name, podUID)
// TODO(thockin) This should instead return a reference to an extant // TODO(thockin) This should instead return a reference to an extant
// volume object, except that we don't actually hold on to pod specs // volume object, except that we don't actually hold on to pod specs
// or volume objects. // or volume objects.
......
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