2016-03-23 04:43:10 +03:00
|
|
|
package lnwallet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/btcsuite/btclog"
|
2018-06-05 04:34:16 +03:00
|
|
|
"github.com/btcsuite/btcwallet/chain"
|
|
|
|
btcwallet "github.com/btcsuite/btcwallet/wallet"
|
|
|
|
"github.com/btcsuite/btcwallet/wtxmgr"
|
2018-09-20 13:14:50 +03:00
|
|
|
|
|
|
|
"github.com/lightningnetwork/lnd/build"
|
2016-03-23 04:43:10 +03:00
|
|
|
)
|
|
|
|
|
2016-12-19 09:14:01 +03:00
|
|
|
// walletLog is a logger that is initialized with no output filters. This
|
2016-03-23 04:43:10 +03:00
|
|
|
// means the package will not perform any logging by default until the caller
|
|
|
|
// requests it.
|
2016-07-27 21:28:52 +03:00
|
|
|
var walletLog btclog.Logger
|
2016-03-23 04:43:10 +03:00
|
|
|
|
|
|
|
// The default amount of logging is none.
|
|
|
|
func init() {
|
2018-09-20 13:14:50 +03:00
|
|
|
UseLogger(build.NewSubLogger("LNWL", nil))
|
2016-03-23 04:43:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// DisableLog disables all library log output. Logging output is disabled
|
2017-06-21 18:07:44 +03:00
|
|
|
// by default until UseLogger is called.
|
2016-03-23 04:43:10 +03:00
|
|
|
func DisableLog() {
|
2018-09-20 13:14:50 +03:00
|
|
|
UseLogger(btclog.Disabled)
|
2016-03-23 04:43:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// UseLogger uses a specified Logger to output package logging info.
|
|
|
|
// This should be used in preference to SetLogWriter if the caller is also
|
|
|
|
// using btclog.
|
|
|
|
func UseLogger(logger btclog.Logger) {
|
2016-07-27 21:28:52 +03:00
|
|
|
walletLog = logger
|
2017-04-01 15:51:52 +03:00
|
|
|
|
2016-03-23 04:43:10 +03:00
|
|
|
btcwallet.UseLogger(logger)
|
2017-04-01 15:51:52 +03:00
|
|
|
wtxmgr.UseLogger(logger)
|
|
|
|
chain.UseLogger(logger)
|
2016-03-23 04:43:10 +03:00
|
|
|
}
|
|
|
|
|
2016-07-22 02:50:20 +03:00
|
|
|
// logClosure is used to provide a closure over expensive logging operations
|
|
|
|
// so don't have to be performed when the logging level doesn't warrant it.
|
|
|
|
type logClosure func() string
|
|
|
|
|
|
|
|
// String invokes the underlying function and returns the result.
|
|
|
|
func (c logClosure) String() string {
|
|
|
|
return c()
|
|
|
|
}
|
|
|
|
|
|
|
|
// newLogClosure returns a new closure over a function that returns a string
|
|
|
|
// which itself provides a Stringer interface so that it can be used with the
|
|
|
|
// logging system.
|
|
|
|
func newLogClosure(c func() string) logClosure {
|
|
|
|
return logClosure(c)
|
|
|
|
}
|