-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogger.go
50 lines (38 loc) · 960 Bytes
/
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
package examples
import (
"encoding/json"
"log"
golog "github.com/fclairamb/go-log"
)
type Logger struct {
Verbose bool
}
func (l Logger) log(level, event string, keyvals ...interface{}) {
k, _ := json.Marshal(keyvals)
log.Println(level, event, string(k))
}
func (l Logger) Trace(event string, keyvals ...interface{}) {
if l.Verbose {
l.log("TRACE", event, keyvals)
}
}
func (l Logger) Debug(event string, keyvals ...interface{}) {
if l.Verbose {
l.log("DEBUG", event, keyvals)
}
}
func (l Logger) Info(event string, keyvals ...interface{}) {
l.log("INFO", event, keyvals)
}
func (l Logger) Warn(event string, keyvals ...interface{}) {
l.log("WARN", event, keyvals)
}
func (l Logger) Error(event string, keyvals ...interface{}) {
l.log("ERROR", event, keyvals)
}
func (l Logger) Panic(event string, keyvals ...interface{}) {
l.log("PANIC", event, keyvals)
}
func (l Logger) With(keyvals ...interface{}) golog.Logger {
return l
}