chainreg: register logger

This commit is contained in:
carla
2020-11-09 14:07:45 +02:00
parent 72cacb9c5e
commit 5668b335d3
2 changed files with 6 additions and 1 deletions

View File

@@ -5,12 +5,15 @@ import (
"github.com/lightningnetwork/lnd/build"
)
// Subsystem defines the logging code for this subsystem.
const Subsystem = "CHRE"
// log is a logger that is initialized with the btclog.Disabled logger.
var log btclog.Logger
// The default amount of logging is none.
func init() {
UseLogger(build.NewSubLogger("CHRE", nil))
UseLogger(build.NewSubLogger(Subsystem, nil))
}
// DisableLog disables all logging output.