summaryrefslogtreecommitdiff
path: root/modules/logging/encoders.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/logging/encoders.go')
-rw-r--r--modules/logging/encoders.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/logging/encoders.go b/modules/logging/encoders.go
index 40e86bd..8b2b44c 100644
--- a/modules/logging/encoders.go
+++ b/modules/logging/encoders.go
@@ -307,6 +307,8 @@ func (lec *LogEncoderConfig) ZapcoreEncoderConfig() zapcore.EncoderConfig {
timeFormat = "2006/01/02 15:04:05.000"
case "wall_nano":
timeFormat = "2006/01/02 15:04:05.000000000"
+ case "common_log":
+ timeFormat = "02/Jan/2006:15:04:05 -0700"
}
timeFormatter = func(ts time.Time, encoder zapcore.PrimitiveArrayEncoder) {
encoder.AppendString(ts.UTC().Format(timeFormat))