-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathlog.go
69 lines (56 loc) · 1.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package core
import (
"os"
"strings"
"github.com/sirupsen/logrus"
)
const (
DebugEnvVar = "DEBUG_GOVPP"
debugOptCore = "core"
debugOptConn = "conn"
debugOptMsgId = "msgid"
debugOptChannels = "channels"
)
var (
debugMap map[string]struct{}
debugOn bool
log *logrus.Logger
)
// init initializes global logger
func init() {
debugMap = initDebugMap(os.Getenv(DebugEnvVar))
debugOn = isDebugOn(debugOptCore)
log = logrus.New()
log.Formatter = &logrus.TextFormatter{
EnvironmentOverrideColors: true,
}
if debugOn {
log.Level = logrus.DebugLevel
log.Debugf("govpp: debug enabled %v", debugMap)
}
}
func isDebugOn(u string) bool {
_, ok := debugMap[u]
return ok
}
func initDebugMap(s string) map[string]struct{} {
debugSet := make(map[string]struct{})
for _, p := range splitString(s) {
key := strings.SplitN(p, "=", 2)[0] // We only need the key
debugSet[key] = struct{}{}
}
return debugSet
}
func splitString(s string) []string {
return strings.FieldsFunc(s, func(c rune) bool {
return c == ';' || c == ','
})
}
// SetLogger sets global logger to l.
func SetLogger(l *logrus.Logger) {
log = l
}
// SetLogLevel sets global logger level to lvl.
func SetLogLevel(lvl logrus.Level) {
log.Level = lvl
}