-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
74 lines (62 loc) · 1.43 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
package forest
import (
"log"
"os"
)
type (
Logger interface {
Info(...interface{})
Warn(...interface{})
Print(...interface{})
Error(...interface{})
Fatal(...interface{})
Panic(...interface{})
Infoln(...interface{})
Warnln(...interface{})
Println(...interface{})
Errorln(...interface{})
Fatalln(...interface{})
Panicln(...interface{})
Infof(string, ...interface{})
Warnf(string, ...interface{})
Printf(string, ...interface{})
Errorf(string, ...interface{})
Fatalf(string, ...interface{})
Panicf(string, ...interface{})
}
logger struct {
*log.Logger
}
)
func newLogger() *logger {
std := log.New(os.Stderr, "", log.LstdFlags)
std.SetFlags(0)
return &logger{std}
}
func (s *logger) Info(args ...interface{}) {
s.Logger.Print(args...)
}
func (s *logger) Infof(format string, args ...interface{}) {
s.Logger.Printf(format, args...)
}
func (s *logger) Infoln(args ...interface{}) {
s.Logger.Println(args...)
}
func (s *logger) Warn(args ...interface{}) {
s.Logger.Print(args...)
}
func (s *logger) Warnf(format string, args ...interface{}) {
s.Logger.Printf(format, args...)
}
func (s *logger) Warnln(args ...interface{}) {
s.Logger.Println(args...)
}
func (s *logger) Error(args ...interface{}) {
s.Logger.Print(args...)
}
func (s *logger) Errorf(format string, args ...interface{}) {
s.Logger.Printf(format, args...)
}
func (s *logger) Errorln(args ...interface{}) {
s.Logger.Println(args...)
}