forked from lightninglabs/neutrino
-
Notifications
You must be signed in to change notification settings - Fork 5
/
log.go
48 lines (43 loc) · 1.35 KB
/
log.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package neutrino
import (
"github.com/btcsuite/btclog"
"github.com/ltcsuite/ltcd/addrmgr"
"github.com/ltcsuite/ltcd/blockchain"
"github.com/ltcsuite/ltcd/connmgr"
"github.com/ltcsuite/ltcd/peer"
"github.com/ltcsuite/ltcd/txscript"
"github.com/ltcsuite/neutrino/blockntfns"
"github.com/ltcsuite/neutrino/chanutils"
"github.com/ltcsuite/neutrino/filterdb"
"github.com/ltcsuite/neutrino/pushtx"
"github.com/ltcsuite/neutrino/query"
)
// 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() {
DisableLog()
}
// DisableLog disables all library log output. Logging output is disabled
// by default until either UseLogger or SetLogWriter are called.
func DisableLog() {
log = btclog.Disabled
}
// 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) {
log = logger
blockchain.UseLogger(logger)
txscript.UseLogger(logger)
peer.UseLogger(logger)
addrmgr.UseLogger(logger)
blockntfns.UseLogger(logger)
pushtx.UseLogger(logger)
connmgr.UseLogger(logger)
query.UseLogger(logger)
filterdb.UseLogger(logger)
chanutils.UseLogger(logger)
}