watchtower/server/server: add start/stop logging

This commit is contained in:
Conner Fromknecht 2018-10-31 20:42:18 -07:00
parent fb4d3909a1
commit a9e523ecf1
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

View File

@ -108,8 +108,12 @@ func (s *Server) Start() error {
return nil
}
log.Infof("Starting watchtower server")
s.connMgr.Start()
log.Infof("Watchtower server started successfully")
return nil
}
@ -120,11 +124,15 @@ func (s *Server) Stop() error {
return nil
}
log.Infof("Stopping watchtower server")
s.connMgr.Stop()
close(s.quit)
s.wg.Wait()
log.Infof("Watchtower server stopped successfully")
return nil
}