2015-05-01 08:28:01 +02:00
|
|
|
// Copyright (c) 2013-2015 The btcsuite developers
|
2013-06-12 23:35:27 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-01-30 07:03:01 +01:00
|
|
|
package txscript
|
2013-06-12 23:35:27 +02:00
|
|
|
|
|
|
|
import (
|
2015-01-16 18:18:14 +01:00
|
|
|
"github.com/btcsuite/btclog"
|
2013-06-12 23:35:27 +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:36:58 +01:00
|
|
|
var log btclog.Logger
|
2013-06-12 23:35:27 +02:00
|
|
|
|
|
|
|
// The default amount of logging is none.
|
|
|
|
func init() {
|
|
|
|
DisableLog()
|
|
|
|
}
|
|
|
|
|
|
|
|
// DisableLog disables all library log output. Logging output is disabled
|
2017-05-24 23:24:06 +02:00
|
|
|
// by default until UseLogger is called.
|
2013-06-12 23:35:27 +02:00
|
|
|
func DisableLog() {
|
2013-11-21 16:36:58 +01:00
|
|
|
log = btclog.Disabled
|
2013-06-12 23:35:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// UseLogger uses a specified Logger to output package logging info.
|
2013-11-21 16:36:58 +01:00
|
|
|
func UseLogger(logger btclog.Logger) {
|
2013-06-12 23:35:27 +02:00
|
|
|
log = logger
|
|
|
|
}
|
|
|
|
|
|
|
|
// LogClosure is a closure that can be printed with %v to be used to
|
|
|
|
// generate expensive-to-create data for a detailed log level and avoid doing
|
|
|
|
// the work if the data isn't printed.
|
|
|
|
type logClosure func() string
|
|
|
|
|
|
|
|
func (c logClosure) String() string {
|
|
|
|
return c()
|
|
|
|
}
|
|
|
|
|
|
|
|
func newLogClosure(c func() string) logClosure {
|
|
|
|
return logClosure(c)
|
|
|
|
}
|