Skip to content

Commit

Permalink
Change log message timestamps to system local; (#1184)
Browse files Browse the repository at this point in the history
  • Loading branch information
kocdemir committed Aug 26, 2022
1 parent 1b1818d commit 88f5f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (l *Logger) Message(s Severity, stopProcess bool, text string) *Message {

m := &Message{
Text: text,
Time: t.In(time.UTC),
Time: t.In(time.Local),
Severity: s,
StopProcess: stopProcess,
Tag: l.tag,
Expand Down

0 comments on commit 88f5f31

Please sign in to comment.