-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogging.go
More file actions
121 lines (101 loc) · 1.96 KB
/
logging.go
File metadata and controls
121 lines (101 loc) · 1.96 KB
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
package util
import (
"fmt"
"log"
"os"
)
// This is meant to be a better logging package that uses the default logger,
// but doesn't just spam the crap out of everything.
type LogLevel int
const (
DEBUG LogLevel = iota
INFO
WARN
ERROR
FATAL
)
var logLevel LogLevel = INFO
func LoggingLevel() LogLevel {
return logLevel
}
func DisableLogging() {
logLevel = FATAL + 1
}
func SetOutput(filename string) {
f, err := os.OpenFile(filename, os.O_RDWR|os.O_APPEND|os.O_CREATE, 0666)
if err != nil {
panic(err.Error())
}
log.SetOutput(f)
}
func SetLoggingLevel(level LogLevel) {
if level < 0 || level > FATAL {
panic("Not a valid log level")
}
logLevel = level
if logLevel <= DEBUG {
log.SetFlags(log.LstdFlags | log.Lshortfile)
} else {
log.SetFlags(log.LstdFlags)
}
}
func Info(msg string) {
if logLevel <= INFO {
log.SetPrefix("[INFO] ")
log.Output(2, msg)
}
}
func Infof(msg string, args ...interface{}) {
if logLevel <= INFO {
log.SetPrefix("[INFO] ")
log.Output(2, fmt.Sprintf(msg, args...))
}
}
func Debug(msg string) {
if logLevel <= DEBUG {
log.SetPrefix("[DEBUG] ")
log.Output(2, msg)
}
}
func Debugf(msg string, args ...interface{}) {
if logLevel <= DEBUG {
log.SetPrefix("[DEBUG] ")
log.Output(2, fmt.Sprintf(msg, args...))
}
}
func Warn(msg string) {
if logLevel <= WARN {
log.SetPrefix("[WARN] ")
log.Output(2, msg)
}
}
func Warnf(msg string, args ...interface{}) {
if logLevel <= WARN {
log.SetPrefix("[WARN] ")
log.Output(2, fmt.Sprintf(msg, args...))
}
}
func Error(msg string) {
if logLevel <= ERROR {
log.SetPrefix("[ERROR] ")
log.Print(msg)
}
}
func Errorf(msg string, args ...interface{}) {
if logLevel <= ERROR {
log.SetPrefix("[ERROR] ")
log.Printf(msg, args...)
}
}
func Fatal(msg string) {
if logLevel <= FATAL {
log.SetPrefix("[FATAL] ")
log.Print(msg)
}
}
func Fatalf(msg string, args ...interface{}) {
if logLevel <= FATAL {
log.SetPrefix("[FATAL] ")
log.Printf(msg, args...)
}
}