forked from elodina/go_kafka_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
216 lines (171 loc) · 8.7 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
/* Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
package go_kafka_client
import (
"fmt"
log "github.com/cihub/seelog"
)
//Logger used by this client. Defaults to build-in logger with Info log level.
var Logger KafkaLogger = NewDefaultLogger(InfoLevel)
// LogEmitter used by this client. Defaults to empty emitter that ignores all incoming data.
var EmitterLogs LogEmitter = NewEmptyEmitter()
//Logger interface. Lets you plug-in your custom logging library instead of using built-in one.
type KafkaLogger interface {
//Formats a given message according to given params to log with level Trace.
Trace(message string, params ...interface{})
//Formats a given message according to given params to log with level Debug.
Debug(message string, params ...interface{})
//Formats a given message according to given params to log with level Info.
Info(message string, params ...interface{})
//Formats a given message according to given params to log with level Warn.
Warn(message string, params ...interface{})
//Formats a given message according to given params to log with level Error.
Error(message string, params ...interface{})
//Formats a given message according to given params to log with level Critical.
Critical(message string, params ...interface{})
GetLogLevel() LogLevel
IsAllowed(logLevel LogLevel) bool
}
//Represents a logging level
type LogLevel string
const (
//Use TraceLevel for debugging to find problems in functions, variables etc.
TraceLevel LogLevel = "trace"
//Use DebugLevel for detailed system reports and diagnostic messages.
DebugLevel LogLevel = "debug"
//Use InfoLevel for general information about a running application.
InfoLevel LogLevel = "info"
//Use WarnLevel to indicate small errors and failures that should not happen normally but are recovered automatically.
WarnLevel LogLevel = "warn"
//Use ErrorLevel to indicate severe errors that affect application workflow and are not handled automatically.
ErrorLevel LogLevel = "error"
//Use CriticalLevel to indicate fatal errors that may cause data corruption or loss.
CriticalLevel LogLevel = "critical"
)
var logLevelPriorities = map[LogLevel]int {
TraceLevel: 0,
DebugLevel: 1,
InfoLevel: 2,
WarnLevel: 3,
ErrorLevel: 4,
CriticalLevel: 5,
}
//Writes a given message with a given tag to log with level Trace.
func Trace(tag interface{}, message interface{}) {
Logger.Trace(fmt.Sprintf("[%s] %s", tag, message))
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), TraceLogTypeId, fmt.Sprintf("%s", message), nil))
}
//Formats a given message according to given params with a given tag to log with level Trace.
func Tracef(tag interface{}, message interface{}, params ...interface{}) {
Logger.Trace(fmt.Sprintf("[%s] %s", tag, message), params...)
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), TraceLogTypeId, fmt.Sprintf(fmt.Sprintf("%s", message), params...), nil))
}
//Writes a given message with a given tag to log with level Debug.
func Debug(tag interface{}, message interface{}) {
Logger.Debug(fmt.Sprintf("[%s] %s", tag, message))
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), DebugLogTypeId, fmt.Sprintf("%s", message), nil))
}
//Formats a given message according to given params with a given tag to log with level Debug.
func Debugf(tag interface{}, message interface{}, params ...interface{}) {
Logger.Debug(fmt.Sprintf("[%s] %s", tag, message), params...)
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), DebugLogTypeId, fmt.Sprintf(fmt.Sprintf("%s", message), params...), nil))
}
//Writes a given message with a given tag to log with level Info.
func Info(tag interface{}, message interface{}) {
Logger.Info(fmt.Sprintf("[%s] %s", tag, message))
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), InfoLogTypeId, fmt.Sprintf("%s", message), nil))
}
//Formats a given message according to given params with a given tag to log with level Info.
func Infof(tag interface{}, message interface{}, params ...interface{}) {
Logger.Info(fmt.Sprintf("[%s] %s", tag, message), params...)
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), InfoLogTypeId, fmt.Sprintf(fmt.Sprintf("%s", message), params...), nil))
}
//Writes a given message with a given tag to log with level Warn.
func Warn(tag interface{}, message interface{}) {
Logger.Warn(fmt.Sprintf("[%s] %s", tag, message))
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), WarnLogTypeId, fmt.Sprintf("%s", message), nil))
}
//Formats a given message according to given params with a given tag to log with level Warn.
func Warnf(tag interface{}, message interface{}, params ...interface{}) {
Logger.Warn(fmt.Sprintf("[%s] %s", tag, message), params...)
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), WarnLogTypeId, fmt.Sprintf(fmt.Sprintf("%s", message), params...), nil))
}
//Writes a given message with a given tag to log with level Error.
func Error(tag interface{}, message interface{}) {
Logger.Error(fmt.Sprintf("[%s] %s", tag, message))
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), ErrorLogTypeId, fmt.Sprintf("%s", message), nil))
}
//Formats a given message according to given params with a given tag to log with level Error.
func Errorf(tag interface{}, message interface{}, params ...interface{}) {
Logger.Error(fmt.Sprintf("[%s] %s", tag, message), params...)
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), ErrorLogTypeId, fmt.Sprintf(fmt.Sprintf("%s", message), params...), nil))
}
//Writes a given message with a given tag to log with level Critical.
func Critical(tag interface{}, message interface{}) {
Logger.Critical(fmt.Sprintf("[%s] %s", tag, message))
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), CriticalLogTypeId, fmt.Sprintf("%s", message), nil))
}
//Formats a given message according to given params with a given tag to log with level Critical.
func Criticalf(tag interface{}, message interface{}, params ...interface{}) {
Logger.Critical(fmt.Sprintf("[%s] %s", tag, message), params...)
EmitterLogs.Emit(newLogLine(fmt.Sprintf("%s", tag), CriticalLogTypeId, fmt.Sprintf(fmt.Sprintf("%s", message), params...), nil))
}
//Default implementation of KafkaLogger interface used in this client.
type DefaultLogger struct {
logLevel LogLevel
logger log.LoggerInterface
}
//Creates a new DefaultLogger that is configured to write messages to console with minimum log level Level.
func NewDefaultLogger(Level LogLevel) *DefaultLogger {
var config = fmt.Sprintf(`<seelog minlevel="%s">
<outputs formatid="main">
<console />
</outputs>
<formats>
<format id="main" format="%%Date/%%Time [%%LEVEL] %%Msg%%n"/>
</formats>
</seelog>`, Level)
logger, _ := log.LoggerFromConfigAsBytes([]byte(config))
return &DefaultLogger{Level, logger}
}
// Formats a given message according to given params to log with level Trace.
func (dl *DefaultLogger) Trace(message string, params ...interface{}) {
dl.logger.Tracef(message, params...)
}
//Formats a given message according to given params to log with level Debug.
func (dl *DefaultLogger) Debug(message string, params ...interface{}) {
dl.logger.Debugf(message, params...)
}
//Formats a given message according to given params to log with level Info.
func (dl *DefaultLogger) Info(message string, params ...interface{}) {
dl.logger.Infof(message, params...)
}
//Formats a given message according to given params to log with level Warn.
func (dl *DefaultLogger) Warn(message string, params ...interface{}) {
dl.logger.Warnf(message, params...)
}
//Formats a given message according to given params to log with level Error.
func (dl *DefaultLogger) Error(message string, params ...interface{}) {
dl.logger.Errorf(message, params...)
}
//Formats a given message according to given params to log with level Critical.
func (dl *DefaultLogger) Critical(message string, params ...interface{}) {
dl.logger.Criticalf(message, params...)
}
func (dl *DefaultLogger) GetLogLevel() LogLevel {
return dl.logLevel
}
//Formats a given message according to given params to log with level Critical.
func (dl *DefaultLogger) IsAllowed(loglevel LogLevel) bool {
return logLevelPriorities[loglevel] >= logLevelPriorities[dl.GetLogLevel()]
}