Skip to content

Commit

Permalink
fix logging calls
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeweiwei committed Nov 13, 2018
1 parent 0232611 commit 2850fb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/ingress/controller/nginx.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions internal/ingress/status/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func (s statusSync) Run() {
}, stopCh)
},
OnStoppedLeading: func() {
glog.V(2).Infof("I am not status update leader anymore")
glog.V(2).Info("I am not status update leader anymore")
close(stopCh)

// cancel the context
Expand Down Expand Up @@ -197,7 +197,7 @@ func (s statusSync) Shutdown() {
return
}

glog.Infof("updating status of Ingress rules (remove)")
glog.Info("updating status of Ingress rules (remove)")

addrs, err := s.runningAddresses()
if err != nil {
Expand Down

0 comments on commit 2850fb5

Please sign in to comment.