-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlogging.go
55 lines (47 loc) · 985 Bytes
/
logging.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
package kilonova
import (
"github.com/mattn/go-isatty"
"io"
"os"
"time"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
func logColors(w io.Writer) bool {
f, ok := w.(*os.File)
if !ok {
return false
}
if os.Getenv("NO_COLOR") != "" {
return false
}
if !isatty.IsTerminal(f.Fd()) {
return false
}
return os.Getenv("TERM") != "dumb"
}
func GetZapCore(debug bool, out io.Writer) zapcore.Core {
var cfg zapcore.EncoderConfig
if debug {
cfg = zap.NewDevelopmentEncoderConfig()
} else {
cfg = zap.NewProductionEncoderConfig()
}
cfg.EncodeTime = func(t time.Time, enc zapcore.PrimitiveArrayEncoder) {
enc.AppendString(t.UTC().Format(time.RFC3339))
}
if logColors(out) {
cfg.EncodeLevel = zapcore.CapitalColorLevelEncoder
} else {
cfg.EncodeLevel = zapcore.CapitalLevelEncoder
}
level := zapcore.InfoLevel
if debug {
level = zapcore.DebugLevel
}
return zapcore.NewCore(
zapcore.NewConsoleEncoder(cfg),
zapcore.AddSync(out),
level,
)
}