forked from t-tomalak/logrus-easy-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formatter.go
60 lines (51 loc) · 1.7 KB
/
formatter.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
// Package easy allows to easily format output of Logrus logger
package easy
import (
"strconv"
"strings"
"github.com/sirupsen/logrus"
)
const (
// Default log format will output [INFO] 2006-01-02 15:04:05.9999 path/file Line:1 - Log message
defaultLogFormat = "[%level%] %time% %func% Line:%line% - %msg%\n"
defaultTimestampFormat = "2006-01-02 15:04:05.9999"
)
// Formatter implements logrus.Formatter interface.
type Formatter struct {
// Timestamp format
TimestampFormat string
// Available standard keys: time, msg, level, func, line
// Also can include custom fields but limited to strings.
// All of fields need to be wrapped inside %% i.e %time% %msg%
LogFormat string
}
// Format building log message.
func (f *Formatter) Format(entry *logrus.Entry) ([]byte, error) {
output := f.LogFormat
if output == "" {
output = defaultLogFormat
}
timestampFormat := f.TimestampFormat
if timestampFormat == "" {
timestampFormat = defaultTimestampFormat
}
output = strings.Replace(output, "%time%", entry.Time.Format(timestampFormat), 1)
output = strings.Replace(output, "%msg%", entry.Message, 1)
level := strings.ToUpper(entry.Level.String())
output = strings.Replace(output, "%level%", level, 1)
output = strings.Replace(output, "%func%", entry.Caller.Function, 1)
output = strings.Replace(output, "%line%", strconv.Itoa(entry.Caller.Line), 1)
for k, val := range entry.Data {
switch v := val.(type) {
case string:
output = strings.Replace(output, "%"+k+"%", v, 1)
case int:
s := strconv.Itoa(v)
output = strings.Replace(output, "%"+k+"%", s, 1)
case bool:
s := strconv.FormatBool(v)
output = strings.Replace(output, "%"+k+"%", s, 1)
}
}
return []byte(output), nil
}