log: static address sub logger

This commit is contained in:
Slyghtning 2023-11-09 19:16:31 +01:00
parent a9b41bf781
commit 8f60a49977
No known key found for this signature in database
GPG key ID: F82D456EA023C9BF

24
staticaddr/log.go Normal file
View file

@ -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
}