OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / btcsuite / btcd / connmgr / log.go
1 // Copyright (c) 2016 The btcsuite developers
2 // Use of this source code is governed by an ISC
3 // license that can be found in the LICENSE file.
4
5 package connmgr
6
7 import "github.com/btcsuite/btclog"
8
9 // log is a logger that is initialized with no output filters.  This
10 // means the package will not perform any logging by default until the caller
11 // requests it.
12 var log btclog.Logger
13
14 // The default amount of logging is none.
15 func init() {
16         DisableLog()
17 }
18
19 // DisableLog disables all library log output.  Logging output is disabled
20 // by default until either UseLogger or SetLogWriter are called.
21 func DisableLog() {
22         log = btclog.Disabled
23 }
24
25 // UseLogger uses a specified Logger to output package logging info.
26 // This should be used in preference to SetLogWriter if the caller is also
27 // using btclog.
28 func UseLogger(logger btclog.Logger) {
29         log = logger
30 }