-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
126 lines (109 loc) · 2.45 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
package GoLogger
import (
"errors"
"os"
"github.com/sirupsen/logrus"
)
const (
PANIC = iota
FATAL
ERROR
WARNING
INFO
DEBUG
)
type LoggerOptions struct {
OutputFile string
Path string
LogLevel int
}
// Init initializes logger with the options passed as parameter
func Init(options *LoggerOptions) error {
if !wasOutputFileProvided(options.OutputFile) {
return errors.New("No file provided")
}
return setLoggerOptions(options)
}
func wasOutputFileProvided(outputFile string) bool {
return outputFile != ""
}
func setLoggerOptions(options *LoggerOptions) error {
logrus.SetFormatter(&logrus.JSONFormatter{})
file, err := openOrCreateFile(options.Path, options.OutputFile)
if err != nil {
return err
}
logrus.SetOutput(file)
SetLogLevel(options.LogLevel)
return nil
}
func openOrCreateFile(path, outputFile string) (*os.File, error) {
if err := os.MkdirAll(path, 0744); err != nil {
return nil, err
}
mode := os.O_APPEND | os.O_WRONLY | os.O_CREATE
return os.OpenFile(path+outputFile, mode, 0755)
}
// SetLogLevel sets a new log level
func SetLogLevel(logLevel int) {
logLevel = parseLogLevel(logLevel)
logrus.SetLevel(logrus.Level(logLevel))
}
func parseLogLevel(logLevel int) int {
if logLevel < PANIC || logLevel > DEBUG {
return DEBUG
}
return logLevel
}
// GetLogLevel returns the current log level
func GetLogLevel() int {
return int(logrus.GetLevel())
}
// LogPanic logs panic msg
func LogPanic(msg string, fields map[string]interface{}) {
if fields != nil {
logrus.WithFields(fields).Panic(msg)
} else {
logrus.Panic(msg)
}
}
// LogFatal logs fatal msg
func LogFatal(msg string, fields map[string]interface{}) {
if fields != nil {
logrus.WithFields(fields).Fatal(msg)
} else {
logrus.Fatal(msg)
}
}
// LogError logs error msg
func LogError(msg string, fields map[string]interface{}) {
if fields != nil {
logrus.WithFields(fields).Error(msg)
} else {
logrus.Error(msg)
}
}
// LogWarning logs warning msg
func LogWarning(msg string, fields map[string]interface{}) {
if fields != nil {
logrus.WithFields(fields).Warning(msg)
} else {
logrus.Warning(msg)
}
}
// LogInfo logs info msg
func LogInfo(msg string, fields map[string]interface{}) {
if fields != nil {
logrus.WithFields(fields).Info(msg)
} else {
logrus.Info(msg)
}
}
// LogDebug logs debug msg
func LogDebug(msg string, fields map[string]interface{}) {
if fields != nil {
logrus.WithFields(fields).Debug(msg)
} else {
logrus.Debug(msg)
}
}