Skip to content

Commit

Permalink
Merge pull request kubernetes#22277 from gmarek/spam
Browse files Browse the repository at this point in the history
Reduce spam in Kubelet logs
  • Loading branch information
saad-ali committed Mar 1, 2016
2 parents f9b1a33 + 459c954 commit 719158d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/kubelet/volumes.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func (kl *Kubelet) newVolumeBuilderFromPlugins(spec *volume.Spec, pod *api.Pod,
if err != nil {
return nil, fmt.Errorf("failed to instantiate volume builder for %s: %v", spec.Name(), err)
}
glog.V(3).Infof("Used volume plugin %q to mount %s", plugin.Name(), spec.Name())
glog.V(10).Infof("Used volume plugin %q to mount %s", plugin.Name(), spec.Name())
return builder, nil
}

Expand Down Expand Up @@ -313,7 +313,7 @@ func (kl *Kubelet) newVolumeCleanerFromPlugins(kind string, name string, podUID
if err != nil {
return nil, fmt.Errorf("failed to instantiate volume plugin for %s/%s: %v", podUID, kind, err)
}
glog.V(3).Infof("Used volume plugin %q to unmount %s/%s", plugin.Name(), podUID, kind)
glog.V(5).Infof("Used volume plugin %q to unmount %s/%s", plugin.Name(), podUID, kind)
return cleaner, nil
}

Expand Down

0 comments on commit 719158d

Please sign in to comment.