mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-21 22:11:41 +01:00
watchtower/server/server: add start/stop logging
This commit is contained in:
parent
fb4d3909a1
commit
a9e523ecf1
1 changed files with 8 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue