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
Describe the bug
Have, on occasion, seen duplicate log entries in the log panel
To Reproduce
So far difficult to replicate
Expected behavior
Should only display each log entry once
Fixes
Should always record timestamp with each log entry, maybe in a tuple (timestamp, log_entry), and then only insert into the log Vec (or ideally a HashSet), if the (timestamp, log_entry) is unique.
Would need to change the way the -t arg is interpreted in order to display, or not display, the timestamp
The text was updated successfully, but these errors were encountered:
Describe the bug
Have, on occasion, seen duplicate log entries in the log panel
To Reproduce
So far difficult to replicate
Expected behavior
Should only display each log entry once
Fixes
Should always record timestamp with each log entry, maybe in a tuple (timestamp, log_entry), and then only insert into the log Vec (or ideally a HashSet), if the (timestamp, log_entry) is unique.
Would need to change the way the
-t
arg is interpreted in order to display, or not display, the timestampThe text was updated successfully, but these errors were encountered: