multi: add debug logs to catch slow shutdown

This commit is contained in:
yyforyongyu
2023-09-08 02:16:42 +08:00
committed by Olaoluwa Osuntokun
parent ba007d9373
commit 66b8700c0b
24 changed files with 59 additions and 23 deletions

View File

@@ -728,7 +728,9 @@ func (d *AuthenticatedGossiper) resendFutureMessages(height uint32) {
// Stop signals any active goroutines for a graceful closure.
func (d *AuthenticatedGossiper) Stop() error {
d.stopped.Do(func() {
log.Info("Authenticated gossiper shutting down")
log.Info("Authenticated gossiper shutting down...")
defer log.Debug("Authenticated gossiper shutdown complete")
d.stop()
})
return nil