-
Notifications
You must be signed in to change notification settings - Fork 0
/
logging.go
60 lines (48 loc) · 1.42 KB
/
logging.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
49
50
51
52
53
54
55
56
57
58
59
60
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package util
import (
"sync"
"github.com/hyperledger/fabric/common/flogging"
"github.com/op/go-logging"
)
// Module names for logger initialization.
const (
LoggingChannelModule = "gossip/channel"
LoggingCommModule = "gossip/comm"
LoggingDiscoveryModule = "gossip/discovery"
LoggingElectionModule = "gossip/election"
LoggingGossipModule = "gossip/gossip"
LoggingMockModule = "gossip/comm/mock"
LoggingPullModule = "gossip/pull"
LoggingServiceModule = "gossip/service"
LoggingStateModule = "gossip/state"
LoggingPrivModule = "gossip/privdata"
)
var loggersByModules = make(map[string]*logging.Logger)
var lock = sync.Mutex{}
var testMode bool
// defaultTestSpec is the default logging level for gossip tests
var defaultTestSpec = "WARNING"
// GetLogger returns a logger for given gossip module and peerID
func GetLogger(module string, peerID string) *logging.Logger {
if peerID != "" && testMode {
module = module + "#" + peerID
}
lock.Lock()
defer lock.Unlock()
if lgr, ok := loggersByModules[module]; ok {
return lgr
}
// Logger doesn't exist, create a new one
lgr := flogging.MustGetLogger(module)
loggersByModules[module] = lgr
return lgr
}
// SetupTestLogging sets the default log levels for gossip unit tests
func SetupTestLogging() {
testMode = true
flogging.InitFromSpec(defaultTestSpec)
}