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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
// Package logger offers simple logging
package logger
import (
"fmt"
"io"
"log"
"os"
"runtime/debug"
"sync"
)
type severity int
type logger interface {
Output(calldepth int, s string) error
SetOutput(w io.Writer)
SetFlags(flag int)
}
// Severity levels.
const (
sInfo severity = iota
sWarning
sError
sFatal
)
// Severity tags.
const (
tagInfo = "\033[0m[INFO] "
tagWarning = "\033[33m[WARN] "
tagError = "\033[31m[ERROR] "
tagFatal = "\033[1;31m[FATAL] "
)
const (
flags = log.Lmsgprefix | log.Ltime
)
var (
logLock sync.Mutex
defaultLogger *Logger
)
// initialize resets defaultLogger. Which allows tests to reset environment.
func initialize() {
defaultLogger = &Logger{
loggers: [4]logger{
log.New(os.Stderr, tagInfo, flags),
log.New(os.Stderr, tagWarning, flags),
log.New(os.Stderr, tagError, flags),
log.New(os.Stderr, tagFatal, flags),
},
minSeverity: 0,
}
}
func init() {
initialize()
}
// Init sets up logging and should be called before log functions, usually in
// the caller's main(). Default log functions can be called before Init(), but
// every severity will be logged.
// The first call to Init populates the default logger and returns the
// generated logger, subsequent calls to Init will only return the generated
// logger.
func Init(level int) *Logger {
l := Logger{
loggers: [4]logger{
log.New(os.Stderr, tagInfo, flags),
log.New(os.Stderr, tagWarning, flags),
log.New(os.Stderr, tagError, flags),
log.New(os.Stderr, tagFatal, flags),
},
minSeverity: sFatal - severity(level),
initialized: true,
}
logLock.Lock()
defer logLock.Unlock()
if !defaultLogger.initialized {
defaultLogger = &l
}
return &l
}
// A Logger represents an active logging object. Multiple loggers can be used
// simultaneously even if they are using the same writers.
type Logger struct {
loggers [4]logger
minSeverity severity
initialized bool
}
func (l *Logger) output(s severity, depth int, txt string) {
if s < l.minSeverity {
return
}
logLock.Lock()
defer logLock.Unlock()
if int(s) >= len(l.loggers) {
panic(fmt.Sprintln("unrecognized severity:", s))
}
l.loggers[s].Output(3+depth, txt+"\033[0m")
}
// SetOutput changes the output of the logger.
func (l *Logger) SetOutput(w io.Writer) {
for _, logger := range l.loggers {
logger.SetOutput(w)
}
}
// SetFlags sets the output flags for the logger.
func (l *Logger) SetFlags(flag int) {
for _, logger := range l.loggers {
logger.SetFlags(flag)
}
}
// Info logs with the Info severity.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Info(v ...interface{}) {
l.output(sInfo, 0, fmt.Sprint(v...))
}
// Infof logs with the Info severity.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Infof(format string, v ...interface{}) {
l.output(sInfo, 0, fmt.Sprintf(format, v...))
}
// Warning logs with the Warning severity.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Warning(v ...interface{}) {
l.output(sWarning, 0, fmt.Sprint(v...))
}
// Warningf logs with the Warning severity.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Warningf(format string, v ...interface{}) {
l.output(sWarning, 0, fmt.Sprintf(format, v...))
}
// Error logs with the ERROR severity.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Error(v ...interface{}) {
l.output(sError, 0, fmt.Sprint(v...))
}
// Errorf logs with the Error severity.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Errorf(format string, v ...interface{}) {
l.output(sError, 0, fmt.Sprintf(format, v...))
}
// Panic uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Panic(v ...interface{}) {
s := fmt.Sprint(v...)
l.output(sError, 0, s)
panic(s)
}
// Panicf uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Panicf(format string, v ...interface{}) {
s := fmt.Sprintf(format, v...)
l.output(sError, 0, s)
panic(s)
}
// Fatal logs with the Fatal severity, and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Fatal(v ...interface{}) {
l.output(sFatal, 0, fmt.Sprint(v...))
debug.PrintStack()
os.Exit(1)
}
// Fatalf logs with the Fatal severity, and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Fatalf(format string, v ...interface{}) {
l.output(sFatal, 0, fmt.Sprintf(format, v...))
debug.PrintStack()
os.Exit(1)
}
// SetOutput changes the output of the default logger.
func SetOutput(w io.Writer) {
defaultLogger.SetOutput(w)
}
// SetFlags sets the output flags for the logger.
func SetFlags(flag int) {
defaultLogger.SetFlags(flag)
}
// Info uses the default logger and logs with the Info severity.
// Arguments are handled in the manner of fmt.Print.
func Info(v ...interface{}) {
defaultLogger.output(sInfo, 0, fmt.Sprint(v...))
}
// Infof uses the default logger and logs with the Info severity.
// Arguments are handled in the manner of fmt.Printf.
func Infof(format string, v ...interface{}) {
defaultLogger.output(sInfo, 0, fmt.Sprintf(format, v...))
}
// Warning uses the default logger and logs with the Warning severity.
// Arguments are handled in the manner of fmt.Print.
func Warning(v ...interface{}) {
defaultLogger.output(sWarning, 0, fmt.Sprint(v...))
}
// Warningf uses the default logger and logs with the Warning severity.
// Arguments are handled in the manner of fmt.Printf.
func Warningf(format string, v ...interface{}) {
defaultLogger.output(sWarning, 0, fmt.Sprintf(format, v...))
}
// Error uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Print.
func Error(v ...interface{}) {
defaultLogger.output(sError, 0, fmt.Sprint(v...))
}
// Errorf uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Printf.
func Errorf(format string, v ...interface{}) {
defaultLogger.output(sError, 0, fmt.Sprintf(format, v...))
}
// Panic uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Print.
func Panic(v ...interface{}) {
s := fmt.Sprint(v...)
defaultLogger.output(sError, 0, s)
panic(s)
}
// Panicf uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Printf.
func Panicf(format string, v ...interface{}) {
s := fmt.Sprintf(format, v...)
defaultLogger.output(sError, 0, s)
panic(s)
}
// Fatal uses the default logger, logs with the Fatal severity,
// and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Print.
func Fatal(v ...interface{}) {
defaultLogger.output(sFatal, 0, fmt.Sprint(v...))
debug.PrintStack()
os.Exit(1)
}
// Fatalf uses the default logger, logs with the Fatal severity,
// and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Printf.
func Fatalf(format string, v ...interface{}) {
defaultLogger.output(sFatal, 0, fmt.Sprintf(format, v...))
debug.PrintStack()
os.Exit(1)
}
|