watchtower/server/server: add start/stop logging
This commit is contained in:
parent
fb4d3909a1
commit
a9e523ecf1
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user