Change glog.Errorf to glog.Infof so that we don't get an ugly log to stdout

pull/8457/head
Priya Wadhwa 2020-06-11 10:57:15 -07:00
parent db116c2689
commit 0ec839186d
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ func DeleteContainer(ociBin string, name string) error {
_, err := ContainerStatus(ociBin, name)
if err != nil {
glog.Errorf("%s daemon seems to be stuck. Please try restarting your %s. Will try to delete anyways: %v", ociBin, ociBin, err)
glog.Infof("%s daemon seems to be stuck. Will try to delete anyways: %v", ociBin, err)
}
// try to delete anyways
if err := ShutDown(ociBin, name); err != nil {