diff --git a/support/log/zap.go b/support/log/zap.go index fecda57..a2060ed 100644 --- a/support/log/zap.go +++ b/support/log/zap.go @@ -158,6 +158,8 @@ func newZapLogger(logFormat Format, level Level) (*zap.Logger, *zap.AtomicLevel, cfg := zap.NewProductionConfig() cfg.DisableCaller = true + cfg.OutputPaths = []string{"stdout"} + eCfg := cfg.EncoderConfig eCfg.TimeKey = "timestamp" eCfg.EncodeTime = zapcore.ISO8601TimeEncoder