Commit c58b0183 authored by Seth Jennings's avatar Seth Jennings

kuberuntime: logs: reduce logging level on waitLogs msg

parent 31d22870
...@@ -380,7 +380,7 @@ func waitLogs(id string, w *fsnotify.Watcher, runtimeService internalapi.Runtime ...@@ -380,7 +380,7 @@ func waitLogs(id string, w *fsnotify.Watcher, runtimeService internalapi.Runtime
} }
// Only keep following container log when it is running. // Only keep following container log when it is running.
if s.State != runtimeapi.ContainerState_CONTAINER_RUNNING { if s.State != runtimeapi.ContainerState_CONTAINER_RUNNING {
glog.Errorf("Container %q is not running (state=%q)", id, s.State) glog.V(5).Infof("Container %q is not running (state=%q)", id, s.State)
// Do not return error because it's normal that the container stops // Do not return error because it's normal that the container stops
// during waiting. // during waiting.
return false, nil return false, nil
......
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