forked from moredhel/env_logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry.go
145 lines (114 loc) · 3.04 KB
/
entry.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package env_logger
import logrus "github.com/sirupsen/logrus"
func (e *Entry) WithField(key string, value interface{}) *Entry {
return (*Entry)(getLogger(e).WithField(key, value))
}
func (e *Entry) WithFields(fields logrus.Fields) *Entry {
return (*Entry)(getLogger(e).WithFields(fields))
}
func (e *Entry) WithError(err error) *Entry {
return (*Entry)(getLogger(e).WithError(err))
}
// Warn prints a warning...
func (e *Entry) Warn(args ...interface{}) {
getLogger(e).Warn(args...)
}
func (e *Entry) Warnln(args ...interface{}) {
getLogger(e).Warnln(args...)
}
func (e *Entry) Warnf(format string, args ...interface{}) {
getLogger(e).Warnf(format, args...)
}
func (e *Entry) Info(args ...interface{}) {
getLogger(e).Info(args...)
}
func (e *Entry) Infoln(args ...interface{}) {
getLogger(e).Infoln(args...)
}
func (e *Entry) Infof(format string, args ...interface{}) {
getLogger(e).Infof(format, args...)
}
func (e *Entry) Trace(args ...interface{}) {
if noCustomizations.Load() {
return
}
getLogger(e).Trace(args...)
}
func (e *Entry) Traceln(args ...interface{}) {
if noCustomizations.Load() {
return
}
getLogger(e).Traceln(args...)
}
func (e *Entry) Tracef(format string, args ...interface{}) {
if noCustomizations.Load() {
return
}
getLogger(e).Tracef(format, args...)
}
func (e *Entry) Debug(args ...interface{}) {
if noCustomizations.Load() {
return
}
getLogger(e).Debug(args...)
}
func (e *Entry) Debugln(args ...interface{}) {
if noCustomizations.Load() {
return
}
getLogger(e).Debugln(args...)
}
func (e *Entry) Debugf(format string, args ...interface{}) {
if noCustomizations.Load() {
return
}
getLogger(e).Debugf(format, args...)
}
func (e *Entry) Print(args ...interface{}) {
if noCustomizations.Load() {
return
}
getLogger(e).Print(args...)
}
func (e *Entry) Println(args ...interface{}) {
getLogger(e).Println(args...)
}
func (e *Entry) Printf(format string, args ...interface{}) {
getLogger(e).Printf(format, args...)
}
func (e *Entry) Error(args ...interface{}) {
getLogger(e).Error(args...)
}
func (e *Entry) Errorf(format string, args ...interface{}) {
getLogger(e).Errorf(format, args...)
}
func (e *Entry) Errorln(args ...interface{}) {
getLogger(e).Errorln(args...)
}
func (e *Entry) Fatal(args ...interface{}) {
getLogger(e).Fatal(args...)
}
func (e *Entry) Fatalf(format string, args ...interface{}) {
getLogger(e).Fatalf(format, args...)
}
func (e *Entry) Fatalln(args ...interface{}) {
getLogger(e).Fatalln(args...)
}
func (e *Entry) Panic(args ...interface{}) {
getLogger(e).Panic(args...)
}
func (e *Entry) Panicf(format string, args ...interface{}) {
getLogger(e).Panicf(format, args...)
}
func (e *Entry) Panicln(args ...interface{}) {
getLogger(e).Panicln(args...)
}
func (e *Entry) Log(level logrus.Level, args ...interface{}) {
getLogger(e).Log(level, args...)
}
func (e *Entry) Logf(level logrus.Level, format string, args ...interface{}) {
getLogger(e).Logf(level, format, args...)
}
func (e *Entry) Logln(level logrus.Level, args ...interface{}) {
getLogger(e).Logln(level, args...)
}