chainntnfs: increase logging of the subsystems

This commit is contained in:
ziggie
2025-04-15 15:16:18 +02:00
parent 7d3b5a1bcf
commit 8dde8cfc59
3 changed files with 14 additions and 0 deletions

View File

@@ -171,6 +171,8 @@ func (b *BitcoindNotifier) Started() bool {
}
func (b *BitcoindNotifier) startNotifier() error {
chainntnfs.Log.Infof("bitcoind notifier starting...")
// Connect to bitcoind, and register for notifications on connected,
// and disconnected blocks.
if err := b.chainConn.Start(); err != nil {
@@ -207,6 +209,8 @@ func (b *BitcoindNotifier) startNotifier() error {
// startup.
atomic.StoreInt32(&b.active, 1)
chainntnfs.Log.Debugf("bitcoind notifier started")
return nil
}