mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-17 04:32:15 +01:00
feat(logging): Write log time in local timezone rather than UTC
This commit is contained in:
committed by
Julien Neuhart
parent
7c51a09068
commit
bed8c25e40
@@ -174,7 +174,7 @@ func newLogEncoder(format string) (zapcore.Encoder, error) {
|
|||||||
// If interactive terminal, make output more human-readable by default.
|
// If interactive terminal, make output more human-readable by default.
|
||||||
// Credits: https://github.com/caddyserver/caddy/blob/v2.1.1/logging.go#L671.
|
// Credits: https://github.com/caddyserver/caddy/blob/v2.1.1/logging.go#L671.
|
||||||
encCfg.EncodeTime = func(ts time.Time, encoder zapcore.PrimitiveArrayEncoder) {
|
encCfg.EncodeTime = func(ts time.Time, encoder zapcore.PrimitiveArrayEncoder) {
|
||||||
encoder.AppendString(ts.UTC().Format("2006/01/02 15:04:05.000"))
|
encoder.AppendString(ts.Local().Format("2006/01/02 15:04:05.000"))
|
||||||
}
|
}
|
||||||
|
|
||||||
if format == textLoggingFormat || format == autoLoggingFormat {
|
if format == textLoggingFormat || format == autoLoggingFormat {
|
||||||
|
|||||||
Reference in New Issue
Block a user