2016-03-23 04:43:10 +03:00
|
|
|
package chainntnfs
|
|
|
|
|
2018-09-20 13:14:50 +03:00
|
|
|
import (
|
|
|
|
"github.com/btcsuite/btclog"
|
|
|
|
"github.com/lightningnetwork/lnd/build"
|
|
|
|
)
|
2016-03-23 04:43:10 +03:00
|
|
|
|
2017-02-23 22:56:47 +03:00
|
|
|
// Log is a logger that is initialized with no output filters. This
|
2016-03-23 04:43:10 +03:00
|
|
|
// means the package will not perform any logging by default until the caller
|
|
|
|
// requests it.
|
2016-06-21 06:47:43 +03:00
|
|
|
var Log btclog.Logger
|
2016-03-23 04:43:10 +03:00
|
|
|
|
|
|
|
// The default amount of logging is none.
|
|
|
|
func init() {
|
2018-09-20 13:14:50 +03:00
|
|
|
UseLogger(build.NewSubLogger("NTFN", nil))
|
2016-03-23 04:43:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// DisableLog disables all library log output. Logging output is disabled
|
2017-06-21 18:07:44 +03:00
|
|
|
// by default until UseLogger is called.
|
2016-03-23 04:43:10 +03:00
|
|
|
func DisableLog() {
|
2018-09-20 13:14:50 +03:00
|
|
|
UseLogger(btclog.Disabled)
|
2016-03-23 04:43:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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) {
|
2016-06-21 06:47:43 +03:00
|
|
|
Log = logger
|
2016-03-23 04:43:10 +03:00
|
|
|
}
|