-
Notifications
You must be signed in to change notification settings - Fork 48
/
log.go
131 lines (110 loc) · 2.34 KB
/
log.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
/*
* Copyright GoIIoT (https://github.com/goiiot)
*
* Licensed 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 libmqtt
import (
"log"
"os"
)
var lg *logger
// LogLevel is used to set log level in client creation
type LogLevel int
const (
// Silent No log
Silent LogLevel = iota
// Verbose log all
Verbose
// Debug log with debug and above
Debug
// Info log with info and above
Info
// Warning log with warning and above
Warning
// Error log error only
Error
)
type logger struct {
verbose *log.Logger
debug *log.Logger
info *log.Logger
warning *log.Logger
error *log.Logger
}
const (
logFlag = log.Ltime | log.Ldate
)
func newStdLogger() *log.Logger {
l := &log.Logger{}
l.SetFlags(logFlag)
l.SetOutput(os.Stderr)
return l
}
func newLogger(l LogLevel) *logger {
lo := &logger{}
if l <= Error {
lo.error = newStdLogger()
lo.error.SetPrefix("[LIBMQTT] E ")
}
if l <= Warning {
lo.warning = newStdLogger()
lo.warning.SetPrefix("[LIBMQTT] W ")
}
if l <= Info {
lo.info = newStdLogger()
lo.info.SetPrefix("[LIBMQTT] I ")
}
if l <= Debug {
lo.debug = newStdLogger()
lo.debug.SetPrefix("[LIBMQTT] D ")
}
if l <= Verbose {
lo.verbose = newStdLogger()
lo.verbose.SetPrefix("[LIBMQTT] V ")
}
if l <= Silent {
lo = nil
}
return lo
}
func (l *logger) v(data ...interface{}) {
if l == nil || l.verbose == nil {
return
}
l.verbose.Println(data...)
}
func (l *logger) d(data ...interface{}) {
if l == nil || l.debug == nil {
return
}
l.debug.Println(data...)
}
func (l *logger) i(data ...interface{}) {
if l == nil || l.info == nil {
return
}
l.info.Println(data...)
}
func (l *logger) w(data ...interface{}) {
if l == nil || l.warning == nil {
return
}
l.warning.Println(data...)
}
func (l *logger) e(data ...interface{}) {
if l == nil || l.error == nil {
return
}
l.error.Println(data...)
}