lbcd/blockchain/log.go

31 lines
758 B
Go
Raw Normal View History

// Copyright (c) 2013-2016 The btcsuite developers
2013-07-18 16:49:28 +02:00
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package blockchain
2013-07-18 16:49:28 +02:00
import (
"github.com/btcsuite/btclog"
2013-07-18 16:49:28 +02:00
)
// 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.
2013-11-21 16:35:08 +01:00
var log btclog.Logger
2013-07-18 16:49:28 +02:00
// The default amount of logging is none.
func init() {
DisableLog()
}
// DisableLog disables all library log output. Logging output is disabled
// by default until UseLogger is called.
2013-07-18 16:49:28 +02:00
func DisableLog() {
2013-11-21 16:35:08 +01:00
log = btclog.Disabled
2013-07-18 16:49:28 +02:00
}
// UseLogger uses a specified Logger to output package logging info.
2013-11-21 16:35:08 +01:00
func UseLogger(logger btclog.Logger) {
2013-07-18 16:49:28 +02:00
log = logger
}