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
|
package log
import (
"os"
zaplogfmt "github.com/sykesm/zap-logfmt"
prettyconsole "github.com/thessem/zap-prettyconsole"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
var logger *zap.SugaredLogger
func DPanic(msg string, rest ...any) {
logger.DPanicw(msg, rest...)
}
func Debug(msg string, rest ...any) {
logger.Debugw(msg, rest...)
}
func Info(msg string, rest ...any) {
logger.Infow(msg, rest...)
}
func Warn(msg string, rest ...any) {
logger.Warnw(msg, rest...)
}
func Error(msg string, rest ...any) {
logger.Errorw(msg, rest...)
}
func Panic(msg string, rest ...any) {
logger.Panicw(msg, rest...)
}
func Fatal(msg string, rest ...any) {
logger.Fatalw(msg, rest...)
}
func Configure(isProduction bool) {
var l *zap.Logger
if isProduction {
cfg := zap.NewProductionEncoderConfig()
cfg.TimeKey = ""
l = zap.New(zapcore.NewCore(zaplogfmt.NewEncoder(cfg), os.Stderr, zapcore.InfoLevel))
} else {
cfg := prettyconsole.NewConfig()
cfg.EncoderConfig.TimeKey = ""
l = zap.Must(cfg.Build())
}
logger = l.WithOptions(zap.AddCallerSkip(1)).Sugar()
}
|