multi: init subsystem loggers via build pkg

This commit is contained in:
Conner Fromknecht
2018-09-20 03:14:50 -07:00
parent 9654a1c619
commit 59b459674d
10 changed files with 50 additions and 27 deletions

View File

@@ -5,6 +5,8 @@ import (
"github.com/btcsuite/btcwallet/chain"
btcwallet "github.com/btcsuite/btcwallet/wallet"
"github.com/btcsuite/btcwallet/wtxmgr"
"github.com/lightningnetwork/lnd/build"
)
// walletLog is a logger that is initialized with no output filters. This
@@ -14,13 +16,13 @@ var walletLog btclog.Logger
// The default amount of logging is none.
func init() {
DisableLog()
UseLogger(build.NewSubLogger("LNWL", nil))
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
func DisableLog() {
walletLog = btclog.Disabled
UseLogger(btclog.Disabled)
}
// UseLogger uses a specified Logger to output package logging info.