2
0
mirror of https://github.com/lightninglabs/loop synced 2024-11-04 06:00:21 +00:00
loop/lndclient/log.go

24 lines
606 B
Go
Raw Normal View History

2019-03-06 20:13:50 +00:00
package lndclient
import (
2019-10-07 15:29:24 +00:00
"github.com/btcsuite/btclog"
2019-10-28 16:06:07 +00:00
"github.com/lightningnetwork/lnd/build"
2019-03-06 20:13:50 +00:00
)
2019-10-28 16:06:07 +00:00
// log is a logger that is initialized with no output filters. This
// means the package will not perform any logging by default until the
// caller requests it.
var log btclog.Logger
2019-03-06 20:13:50 +00:00
2019-10-28 16:06:07 +00:00
// The default amount of logging is none.
func init() {
UseLogger(build.NewSubLogger("LNDC", nil))
}
2019-03-06 20:13:50 +00:00
2019-10-28 16:06:07 +00: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) {
log = logger
2019-03-06 20:13:50 +00:00
}