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
Fixes a bug in the implementation of #680. Log creation uses [`std::strftime`](https://en.cppreference.com/w/cpp/chrono/c/strftime) which does not support the `%f` format string. Instead, build the microseconds outside of `strftime` and append it after.
After the fix, the file names are now correclty appending microseconds (after testing):
```
test_prefix-2025-08-03_21-37-11.810495
test_prefix-stderr-2025-08-03_21-37-11.810495
```
0 commit comments