-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
73 lines (63 loc) · 1.47 KB
/
main.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
package main
import (
"context"
"github.com/giantswarm/microerror"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"github.com/giantswarm/athena/cmd"
)
func main() {
err := mainE(context.Background())
if err != nil {
panic(err)
}
}
func mainE(ctx context.Context) error {
var err error
var log *zap.SugaredLogger
{
var logger *zap.Logger
logger, err = zap.Config{
Level: zap.NewAtomicLevelAt(zap.DebugLevel),
Encoding: "json",
EncoderConfig: zapcore.EncoderConfig{
TimeKey: "time",
LevelKey: "level",
NameKey: "logger",
CallerKey: "caller",
FunctionKey: zapcore.OmitKey,
MessageKey: "message",
StacktraceKey: zapcore.OmitKey,
LineEnding: zapcore.DefaultLineEnding,
EncodeLevel: zapcore.LowercaseLevelEncoder,
EncodeTime: zapcore.RFC3339TimeEncoder,
EncodeDuration: zapcore.SecondsDurationEncoder,
EncodeCaller: zapcore.ShortCallerEncoder,
},
OutputPaths: []string{"stdout"},
ErrorOutputPaths: []string{"stdout"},
}.Build()
if err != nil {
return microerror.Mask(err)
}
log = logger.Sugar().Named("f-logger")
}
var rootCommand *cobra.Command
{
c := cmd.Config{
Log: log,
Viper: viper.New(),
}
rootCommand, err = cmd.New(c)
if err != nil {
return microerror.Mask(err)
}
}
err = rootCommand.ExecuteContext(ctx)
if err != nil {
return microerror.Mask(err)
}
return nil
}