I'm reading through the log files (/oxide/logs/ServerRewards/*) and the time format is 12 hour. So the start of the day, it shows 12:00 and come noon, it shows 12:00 again. I'm working on parsing the logs to a database so they can be queried and this makes it a little more complicated to find when things happened throughout a day. Can this be corrected to show a 24 hour timestamp? Thanks.
Log time format
that's pretty odd.. 12hr format and no am/pm?
find these 3 'LogToFile' lines and change accordingly
LogToFile($"Sold Items", $"[{DateTime.Now.ToString("hh:mm:ss")}] {message}", this);
https://www.c-sharpcorner.com/blogs/date-and-time-format-in-c-sharp-programming1
yea, I can change it myself, but it's something that should be default.