mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-21 14:04:06 +01:00
healthcheck: disable default healthcheck logger
Disable logging by default in the healthcheck submodule to cut dependency on lnd/build as we are hooking the logger separately during lnd init.
This commit is contained in:
parent
6d66133459
commit
cee832b749
1 changed files with 1 additions and 7 deletions
|
@ -2,7 +2,6 @@ package healthcheck
|
|||
|
||||
import (
|
||||
"github.com/btcsuite/btclog"
|
||||
"github.com/lightningnetwork/lnd/build"
|
||||
)
|
||||
|
||||
// Subsystem defines the logging code for this subsystem.
|
||||
|
@ -11,12 +10,7 @@ const Subsystem = "HLCK"
|
|||
// 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))
|
||||
}
|
||||
var log = btclog.Disabled
|
||||
|
||||
// DisableLog disables all library log output. Logging output is disabled
|
||||
// by default until UseLogger is called.
|
||||
|
|
Loading…
Add table
Reference in a new issue