2019-12-11 18:43:44 -08:00
|
|
|
package clientdb
|
|
|
|
|
|
|
|
|
|
import (
|
2025-03-04 18:16:21 +02:00
|
|
|
"github.com/btcsuite/btclog/v2"
|
2019-12-11 18:43:44 -08:00
|
|
|
"github.com/lightningnetwork/lnd/build"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const Subsystem = "CLDB"
|
|
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
|
|
|
// The default amount of logging is none.
|
|
|
|
|
func init() {
|
|
|
|
|
UseLogger(build.NewSubLogger(Subsystem, nil))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
}
|