test-errcode
wangchuxiao 2 years ago
parent ee738e11cd
commit a348af74fa

@ -64,11 +64,12 @@ type ZapLogger struct {
func NewZapLogger() (*ZapLogger, error) { func NewZapLogger() (*ZapLogger, error) {
zapConfig := zap.Config{ zapConfig := zap.Config{
Level: zap.NewAtomicLevelAt(zapcore.DebugLevel), Level: zap.NewAtomicLevelAt(zapcore.DebugLevel),
Development: true, Development: true,
Encoding: "json", Encoding: "json",
EncoderConfig: zap.NewProductionEncoderConfig(), EncoderConfig: zap.NewProductionEncoderConfig(),
OutputPaths: []string{"stdout"}, OutputPaths: []string{"stdout"},
ErrorOutputPaths: []string{"stdout"},
Sampling: &zap.SamplingConfig{ Sampling: &zap.SamplingConfig{
Initial: 0, Initial: 0,
Thereafter: 0, Thereafter: 0,

Loading…
Cancel
Save