ClientSim sometimes uses the wrong time format when posting debug logs
Arty~
In the Worlds SDK, there are some built in logging functions in the file named
ClientSimExtensions.cs
. When these logging functions trigger, they insert a timestamp, but this timestamp is in the wrong format (forces 12 hour with leading zero).Current timestamp string:
System.DateTime.Now.ToString("hh:mm:ss.fff")
Ideally the format should be
"HH:mm:ss:fff"
Log In