loop/log.go

24 lines
604 B
Go
Raw Permalink Normal View History

package loop
import (
"github.com/btcsuite/btclog/v2"
2019-10-28 17:06:07 +01:00
"github.com/lightningnetwork/lnd/build"
)
2019-10-28 17:06:07 +01: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-10-28 17:06:07 +01:00
// The default amount of logging is none.
func init() {
UseLogger(build.NewSubLogger("LOOP", nil))
}
2019-10-28 17:06:07 +01: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
}