-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogger.go
87 lines (72 loc) · 1.64 KB
/
logger.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package log4g
import (
"fmt"
"time"
)
type logger struct {
loggerName string
lls *logLevelSetting
lctx *logContext
logLevel Level
}
func (l *logger) Fatal(args ...interface{}) {
l.Log(FATAL, args...)
}
func (l *logger) Error(args ...interface{}) {
l.Log(ERROR, args...)
}
func (l *logger) Warn(args ...interface{}) {
l.Log(WARN, args...)
}
func (l *logger) Info(args ...interface{}) {
l.Log(INFO, args...)
}
func (l *logger) Debug(args ...interface{}) {
l.Log(DEBUG, args...)
}
func (l *logger) Trace(args ...interface{}) {
l.Log(TRACE, args...)
}
func (l *logger) Log(level Level, args ...interface{}) {
if l.logLevel < level {
return
}
l.logInternal(level, fmt.Sprint(args...))
}
func (l *logger) Logf(level Level, fstr string, args ...interface{}) {
if l.logLevel < level {
return
}
msg := fstr
if len(args) > 0 {
msg = fmt.Sprintf(fstr, args...)
}
l.logInternal(level, msg)
}
func (l *logger) Logp(level Level, payload interface{}) {
if l.logLevel < level {
return
}
l.logInternal(level, payload)
}
func (l *logger) logInternal(level Level, payload interface{}) {
l.lctx.log(&LogEvent{level, time.Now(), l.loggerName, payload})
}
func (l *logger) setLogLevelSetting(lls *logLevelSetting) {
l.lls = lls
l.logLevel = lls.level
}
func (l *logger) setLogContext(lctx *logContext) {
l.lctx = lctx
}
// Apply new LogLevelSetting to all appropriate loggers
func applyNewLevelToLoggers(lls *logLevelSetting, loggers map[string]*logger) {
for _, l := range loggers {
if !ancestor(lls.loggerName, l.loggerName) {
continue
}
if ancestor(l.lls.loggerName, lls.loggerName) {
l.setLogLevelSetting(lls)
}
}
}