-
Notifications
You must be signed in to change notification settings - Fork 251
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
Fix Termination time format #21
Comments
Do you mean to format it without the granularity? |
Just formatting will output UTC all the time. There's some inconsistencies with how time is printed in the code. In some places, time.In(config.Timezone()) is used while in other places it uses the system local time which usually defaults to UTC. This also means issue #23 is valid since termination times are not printed in the configured timezone. Happy New Years! |
I think this issue is resolved! |
Currently, termination time is logged to microseconds granularity along with monotonic clock reading.
See https://golang.org/pkg/time/#Time.String
Suggested fix:
The text was updated successfully, but these errors were encountered: