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
Is your feature request related to a problem? Please describe.
The log generated by onedrive, when enabled in the configs (enable_logging = "true"), does not have trailing zeros in its timestamps, thus the log entries may not be aligned depending on the viewer (even some with tab alignment).
Is your feature request related to a problem? Please describe.
The log generated by
onedrive
, when enabled in the configs (enable_logging = "true"
), does not have trailing zeros in its timestamps, thus the log entries may not be aligned depending on the viewer (even some with tab alignment).Example:
In my text viewer, it appears this way:
Describe the solution you'd like
A solution would be to change this line to:
auto timeString = leftJustify(currentTime.toString(), 28, '0');
after importing
std.string
.Check [leftJustify reference].
Describe alternatives you've considered
I don't know much about the D language, so I don't know a better solution.
Additional context
No response
The text was updated successfully, but these errors were encountered: