Commit 8ff1f05f authored by Shyam Jeedigunta's avatar Shyam Jeedigunta

Increase verbosity of frequently printed logline in scheduler_binder

parent a0844c17
...@@ -130,7 +130,8 @@ func (b *volumeBinder) GetBindingsCache() PodBindingCache { ...@@ -130,7 +130,8 @@ func (b *volumeBinder) GetBindingsCache() PodBindingCache {
func (b *volumeBinder) FindPodVolumes(pod *v1.Pod, nodeName string) (unboundVolumesSatisfied, boundVolumesSatisfied bool, err error) { func (b *volumeBinder) FindPodVolumes(pod *v1.Pod, nodeName string) (unboundVolumesSatisfied, boundVolumesSatisfied bool, err error) {
podName := getPodName(pod) podName := getPodName(pod)
glog.V(4).Infof("FindPodVolumes for pod %q, node %q", podName, nodeName) // Warning: Below log needs high verbosity as it can be printed several times (#60933).
glog.V(5).Infof("FindPodVolumes for pod %q, node %q", podName, nodeName)
// Initialize to true for pods that don't have volumes // Initialize to true for pods that don't have volumes
unboundVolumesSatisfied = true unboundVolumesSatisfied = true
......
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