Skip to content

Commit

Permalink
Reduce probe logging level
Browse files Browse the repository at this point in the history
Too chatty for normal operation
  • Loading branch information
smarterclayton committed Mar 20, 2015
1 parent a8f2cee commit 84ab8f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/kubelet/kubelet.go
Original file line number Diff line number Diff line change
Expand Up @@ -1245,12 +1245,12 @@ func (kl *Kubelet) computePodContainerChanges(pod *api.Pod, hasMirrorPod bool, c
result, err := kl.probeContainer(pod, podStatus, container, dockerContainer.ID, dockerContainer.Created)
if err != nil {
// TODO(vmarmol): examine this logic.
glog.Infof("probe no-error: %q", container.Name)
glog.V(2).Infof("probe no-error: %q", container.Name)
containersToKeep[containerID] = index
continue
}
if result == probe.Success {
glog.Infof("probe success: %q", container.Name)
glog.V(4).Infof("probe success: %q", container.Name)
containersToKeep[containerID] = index
continue
}
Expand Down

0 comments on commit 84ab8f7

Please sign in to comment.