fix logging calls

This commit is contained in:
mikeweiwei 2018-11-13 12:14:27 +08:00
parent 023261142c
commit 2850fb538a
2 changed files with 4 additions and 4 deletions

View file

@ -251,7 +251,7 @@ type NGINXController struct {
// Start starts a new NGINX master process running in the foreground.
func (n *NGINXController) Start() {
glog.Infof("Starting NGINX Ingress controller")
glog.Info("Starting NGINX Ingress controller")
n.store.Run(n.stopCh)
@ -336,7 +336,7 @@ func (n *NGINXController) Stop() error {
return fmt.Errorf("shutdown already in progress")
}
glog.Infof("Shutting down controller queues")
glog.Info("Shutting down controller queues")
close(n.stopCh)
go n.syncQueue.Shutdown()
if n.syncStatus != nil {