You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of event time formatting only allows for the default date time formatting 2023-10-11 13:57:26.676558 +02:00:00 which can be very verbose and creates long lines in the terminal output.
Sorry for the delay. I agree that we should provide customization, but my preference is to expose this through tracing_subscriber::fmt::time::FormatTime interface, which will function as a superset of time::formatting::Formattable.
(We have unreleased changes to tracing-subscriber that re-introduces support for chrono and my personal preference for tracing-subscriber, going forward, would be to use chrono instead of time.)
The current implementation of event time formatting only allows for the default date time formatting
2023-10-11 13:57:26.676558 +02:00:00
which can be very verbose and creates long lines in the terminal output.Proposal
Add an extra field to
UtcDateTime
andLocalDateTime
that allows the user to specify their own time formatter using https://docs.rs/time/latest/time/formatting/trait.Formattable.htmlThis would allow timestamps such as
13:57:26
or other user preferenceThe text was updated successfully, but these errors were encountered: