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
{{ message }}
This repository was archived by the owner on Jun 30, 2025. It is now read-only.
Hello! There seems to be an edge case that occurs when the year switches while we are in the midst of writing glogs.
For instance, if we are writing glogs at 11:59 pm on 12/31/2019, and the year switches to 2020, the mmdd timestamp written on each line of the glog will not capture this year difference. Therefore, it looks like the glogs jump from 12/31/2019 to 01/01/2019 if we are only extrapolating the year from the file name, or the file creation date written at the top of each glog file.
I think some possible solutions include:
Appending the year to each glog line in the format of [IWEF]yyyymmdd hh:mm:ss.uuuuuu threadid file:line] msg
Splitting the glog file when the year changes.
Was there a reason for not including the year in the line-by-line output format?