log: static address sub logger

pull/739/head
Slyghtning 7 months ago
parent 2afdd0929f
commit d2a28a0b90
No known key found for this signature in database
GPG Key ID: F82D456EA023C9BF

@ -0,0 +1,24 @@
package staticaddr
import (
"github.com/btcsuite/btclog"
"github.com/lightningnetwork/lnd/build"
)
// Subsystem defines the sub system name of this package.
const Subsystem = "SADDR"
// 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
}
Loading…
Cancel
Save