-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathformatter.go
61 lines (50 loc) · 1.49 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
61
// Package easy allows to easily format output of Logrus logger
package easy
import (
"strconv"
"strings"
"time"
"github.com/sirupsen/logrus"
)
const (
// Default log format will output [INFO]: 2006-01-02T15:04:05Z07:00 - Log message
defaultLogFormat = "[%lvl%]: %time% - %msg%"
defaultTimestampFormat = time.RFC3339
)
// Formatter implements logrus.Formatter interface.
type Formatter struct {
// Timestamp format
TimestampFormat string
// Available standard keys: time, msg, lvl
// 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, "%lvl%", level, 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
}