mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-13 12:32:48 +02:00
Merge pull request #9720 from ziggie1984/add-btcd-notify-logs
chainntnfs: increase logging of the subsystems
This commit is contained in:
commit
06f1ef47fa
3 changed files with 14 additions and 0 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -204,7 +204,11 @@ func (b *BtcdNotifier) Stop() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
// startNotifier is the main starting point for the BtcdNotifier. It connects
|
||||
// to btcd and start the main dispatcher goroutine.
|
||||
func (b *BtcdNotifier) startNotifier() error {
|
||||
chainntnfs.Log.Infof("btcd notifier starting...")
|
||||
|
||||
// Start our concurrent queues before starting the chain connection, to
|
||||
// ensure onBlockConnected and onRedeemingTx callbacks won't be
|
||||
// blocked.
|
||||
|
|
@ -257,6 +261,8 @@ func (b *BtcdNotifier) startNotifier() error {
|
|||
// startup.
|
||||
atomic.StoreInt32(&b.active, 1)
|
||||
|
||||
chainntnfs.Log.Debugf("btcd notifier started")
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -168,6 +168,8 @@ func (n *NeutrinoNotifier) Started() bool {
|
|||
}
|
||||
|
||||
func (n *NeutrinoNotifier) startNotifier() error {
|
||||
chainntnfs.Log.Infof("neutrino notifier starting...")
|
||||
|
||||
// Start our concurrent queues before starting the rescan, to ensure
|
||||
// onFilteredBlockConnected and onRelavantTx callbacks won't be
|
||||
// blocked.
|
||||
|
|
@ -234,6 +236,8 @@ func (n *NeutrinoNotifier) startNotifier() error {
|
|||
// startup.
|
||||
atomic.StoreInt32(&n.active, 1)
|
||||
|
||||
chainntnfs.Log.Debugf("neutrino notifier started")
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue