-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.go
262 lines (214 loc) · 6.18 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
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
package go_logger
import (
"sync"
)
//------------------------------------------------------------------------------
// LogLevel defines the level of message verbosity.
type LogLevel uint
const (
LogLevelQuiet LogLevel = 0
LogLevelError LogLevel = 1
LogLevelWarning LogLevel = 2
LogLevelInfo LogLevel = 3
LogLevelDebug LogLevel = 4
)
// Logger is the object that controls logging.
type Logger struct {
mtx sync.RWMutex
//level LogLevel
//debugLevel uint
//disableConsole bool
adapters []internalLogger
useLocalTime bool
}
// Options specifies the logger settings to use when initialized.
type Options struct {
// Optionally establish console logging settings.
Console ConsoleOptions `json:"console,omitempty"`
// Optionally enable file logging and establish its settings.
File *FileOptions `json:"file,omitempty"`
// Optionally enable syslog logging and establish its settings.
SysLog *SysLogOptions `json:"sysLog,omitempty"`
// Set the initial logging level to use.
Level LogLevel `json:"level,omitempty"`
// Set the initial logging level for debug output to use.
DebugLevel uint `json:"debugLevel,omitempty"`
// Use the local computer time instead of UTC.
UseLocalTime bool `json:"useLocalTime,omitempty"`
// A callback to call if an internal error is encountered.
ErrorHandler ErrorHandler
}
// ErrorHandler is a callback to call if an internal error must be notified.
type ErrorHandler func(message string)
//------------------------------------------------------------------------------
var (
defaultLoggerInit = sync.Once{}
defaultLogger *Logger
)
//------------------------------------------------------------------------------
// Default returns a logger that only outputs error and warnings to the console.
func Default() *Logger {
defaultLoggerInit.Do(func() {
defaultLogger, _ = Create(Options{
Level: LogLevelInfo,
})
})
return defaultLogger
}
// WithLevel is a helper to set up a log level override.
func WithLevel(level LogLevel) *LogLevel {
return &level
}
// WithDebugLevel is a helper to set up a debug log level override.
func WithDebugLevel(debugLevel uint) *uint {
return &debugLevel
}
// Create creates a new logger.
func Create(opts Options) (*Logger, error) {
// Create logger
lg := &Logger{
mtx: sync.RWMutex{},
adapters: make([]internalLogger, 0),
}
// Initialize global options
glbOpts := globalOptions{
Level: opts.Level,
DebugLevel: opts.DebugLevel,
ErrorHandler: opts.ErrorHandler,
}
// Create console adapter
if !opts.Console.Disable {
adapter := createConsoleAdapter(opts.Console, glbOpts)
// Add to list of adapters
lg.adapters = append(lg.adapters, adapter)
}
// Create file adapter if opts were specified
if opts.File != nil {
adapter, err := createFileAdapter(*opts.File, glbOpts)
if err != nil {
lg.Destroy()
return nil, err
}
// Add to list of adapters
lg.adapters = append(lg.adapters, adapter)
}
// Create syslog adapter if opts were specified
if opts.SysLog != nil {
adapter, err := createSysLogAdapter(*opts.SysLog, glbOpts)
if err != nil {
lg.Destroy()
return nil, err
}
// Add to list of adapters
lg.adapters = append(lg.adapters, adapter)
}
// Done
return lg, nil
}
// Destroy shuts down the logger.
func (lg *Logger) Destroy() {
// The default logger cannot be destroyed
if lg == defaultLogger {
return
}
// Destroy all adapters
for _, adapter := range lg.adapters {
adapter.destroy()
}
lg.adapters = nil
}
// SetLevel sets the minimum level for all messages.
func (lg *Logger) SetLevel(level LogLevel, debugLevel uint, class string) {
// Lock access
lg.mtx.Lock()
defer lg.mtx.Unlock()
for _, adapter := range lg.adapters {
if class == "" || class == "all" || class == adapter.class() {
adapter.setLevel(level, debugLevel)
}
}
}
// Error emits an error message into the configured targets.
// If a string is passed, output format will be in DATE [LEVEL] MESSAGE.
// If a struct is passed, output will be in json with level and timestamp fields automatically added.
func (lg *Logger) Error(obj interface{}) {
// Lock access
lg.mtx.RLock()
msg, isJSON, ok := lg.parseObj(obj)
if ok {
now := lg.getTimestamp()
raw := false
if isJSON {
msg = addPayloadToJSON(msg, now, "error")
raw = true
}
for _, adapter := range lg.adapters {
adapter.logError(now, msg, raw)
}
}
// Unlock access
lg.mtx.RUnlock()
}
// Warning emits a warning message into the configured targets.
// If a string is passed, output format will be in DATE [LEVEL] MESSAGE.
// If a struct is passed, output will be in json with level and timestamp fields automatically added.
func (lg *Logger) Warning(obj interface{}) {
// Lock access
lg.mtx.RLock()
msg, isJSON, ok := lg.parseObj(obj)
if ok {
now := lg.getTimestamp()
raw := false
if isJSON {
msg = addPayloadToJSON(msg, now, "warning")
raw = true
}
for _, adapter := range lg.adapters {
adapter.logWarning(now, msg, raw)
}
}
// Unlock access
lg.mtx.RUnlock()
}
// Info emits an information message into the configured targets.
// If a string is passed, output format will be in DATE [LEVEL] MESSAGE.
// If a struct is passed, output will be in json with level and timestamp fields automatically added.
func (lg *Logger) Info(obj interface{}) {
// Lock access
lg.mtx.RLock()
msg, isJSON, ok := lg.parseObj(obj)
if ok {
now := lg.getTimestamp()
raw := false
if isJSON {
msg = addPayloadToJSON(msg, now, "info")
raw = true
}
for _, adapter := range lg.adapters {
adapter.logInfo(now, msg, raw)
}
}
// Unlock access
lg.mtx.RUnlock()
}
// Debug emits a debug message into the configured targets.
// If a string is passed, output format will be in DATE [LEVEL] MESSAGE.
// If a struct is passed, output will be in json with level and timestamp fields automatically added.
func (lg *Logger) Debug(level uint, obj interface{}) {
// Lock access
lg.mtx.RLock()
msg, isJSON, ok := lg.parseObj(obj)
if ok {
now := lg.getTimestamp()
raw := false
if isJSON {
msg = addPayloadToJSON(msg, now, "debug")
raw = true
}
for _, adapter := range lg.adapters {
adapter.logDebug(level, now, msg, raw)
}
}
// Unlock access
lg.mtx.RUnlock()
}