Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logging timestamps are always in UTC #5

Open
ston1th opened this issue Oct 9, 2021 · 0 comments
Open

Logging timestamps are always in UTC #5

ston1th opened this issue Oct 9, 2021 · 0 comments

Comments

@ston1th
Copy link

ston1th commented Oct 9, 2021

Hello guys

I have noticed that the UTC time is always used for the time format - this prevents the usage of the Z07:00 format string:

b.WriteString(quote(time.Now().UTC().Format(c.tsFormat)))

Example using the default format string:

package main

import (
	"fmt"
	"time"
)

func main() {
	now := time.Now()
	format := "2006-01-02T15:04:05.000000000Z07:00"
	t1 := now.UTC().Format(format)
	t2 := now.Format(format)
	fmt.Println(t1)
	fmt.Println(t2)
}

Output:

2021-10-09T10:16:39.313042783Z
2021-10-09T14:16:39.313042783+04:00

So for people who want to log times in their respective timezone could there be a new Option whether to use UTC or timezone logging? The timezone is then later required for parsing the timestamp to the correct timezone (e.g. for tools like elastisearch).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant