-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzero_logger.go
145 lines (120 loc) · 3.14 KB
/
zero_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package logging
import (
"fmt"
"os"
"sync"
"time"
"github.com/google/uuid"
"github.com/Asrez/GoAPIBlog/config"
"github.com/rs/zerolog"
"github.com/rs/zerolog/pkgerrors"
)
var once sync.Once
var zeroSinLogger *zerolog.Logger
type zeroLogger struct {
cfg *config.Config
logger *zerolog.Logger
}
var zeroLogLevelMapping = map[string]zerolog.Level{
"debug": zerolog.DebugLevel,
"info": zerolog.InfoLevel,
"warn": zerolog.WarnLevel,
"error": zerolog.ErrorLevel,
"fatal": zerolog.FatalLevel,
}
func newZeroLogger(cfg *config.Config) *zeroLogger {
logger := &zeroLogger{cfg: cfg}
logger.Init()
return logger
}
func (l *zeroLogger) getLogLevel() zerolog.Level {
level, exists := zeroLogLevelMapping[l.cfg.Logger.Level]
if !exists {
return zerolog.DebugLevel
}
return level
}
func (l *zeroLogger) Init() {
once.Do(func() {
zerolog.ErrorStackMarshaler = pkgerrors.MarshalStack
fileName := fmt.Sprintf("%s%s-%s.%s",l.cfg.Logger.FilePath,time.Now().Format("2006-01-02"),uuid.New(),"log")
file, err := os.OpenFile(fileName, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0666)
if err != nil {
panic("could not open log file")
}
var logger = zerolog.New(file).
With().
Timestamp().
Str("AppName", "MyApp").
Str("LoggerName", "Zerolog").
Logger()
zerolog.SetGlobalLevel(l.getLogLevel())
zeroSinLogger = &logger
})
l.logger = zeroSinLogger
}
func (l *zeroLogger) Debug(cat Category, sub SubCategory, msg string, extra map[ExtraKey]interface{}) {
l.logger.
Debug().
Str("Category", string(cat)).
Str("SubCategory", string(sub)).
Fields(logParamsToZeroParams(extra)).
Msg(msg)
}
func (l *zeroLogger) Debugf(template string, args ...interface{}) {
l.logger.
Debug().
Msgf(template, args...)
}
func (l *zeroLogger) Info(cat Category, sub SubCategory, msg string, extra map[ExtraKey]interface{}) {
l.logger.
Info().
Str("Category", string(cat)).
Str("SubCategory", string(sub)).
Fields(logParamsToZeroParams(extra)).
Msg(msg)
}
func (l *zeroLogger) Infof(template string, args ...interface{}) {
l.logger.
Info().
Msgf(template, args...)
}
func (l *zeroLogger) Warn(cat Category, sub SubCategory, msg string, extra map[ExtraKey]interface{}) {
l.logger.
Warn().
Str("Category", string(cat)).
Str("SubCategory", string(sub)).
Fields(logParamsToZeroParams(extra)).
Msg(msg)
}
func (l *zeroLogger) Warnf(template string, args ...interface{}) {
l.logger.
Warn().
Msgf(template, args...)
}
func (l *zeroLogger) Error(cat Category, sub SubCategory, msg string, extra map[ExtraKey]interface{}) {
l.logger.
Error().
Str("Category", string(cat)).
Str("SubCategory", string(sub)).
Fields(logParamsToZeroParams(extra)).
Msg(msg)
}
func (l *zeroLogger) Errorf(template string, args ...interface{}) {
l.logger.
Error().
Msgf(template, args...)
}
func (l *zeroLogger) Fatal(cat Category, sub SubCategory, msg string, extra map[ExtraKey]interface{}) {
l.logger.
Fatal().
Str("Category", string(cat)).
Str("SubCategory", string(sub)).
Fields(logParamsToZeroParams(extra)).
Msg(msg)
}
func (l *zeroLogger) Fatalf(template string, args ...interface{}) {
l.logger.
Fatal().
Msgf(template, args...)
}