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

@@ -174,6 +174,8 @@ func (m *MempoolNotifier) ProcessRelevantSpendTx(tx *btcutil.Tx) {
// TearDown stops the notifier and cleans up resources.
func (m *MempoolNotifier) TearDown() {
Log.Infof("Stopping mempool notifier")
defer Log.Debug("mempool notifier stopped")
close(m.quit)
m.wg.Wait()
}