diff --git a/watchtower/server/server.go b/watchtower/server/server.go index 274f06d5..6bc8ac0d 100644 --- a/watchtower/server/server.go +++ b/watchtower/server/server.go @@ -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 }