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
I'm not sure how the log files are intended to be analysed so maybe this isn't relevant - but perhaps would be easier to process them if they were fully in JSON format?
i.e. change format from: 2024-08-08-13-34-41-120409 BurnFuelAction {"id":7400746113474275466646, ...
to: {"time":"2024-08-08-13-34-41-120409","event":"BurnFuelAction","id":7400746113474275466646, ...
The text was updated successfully, but these errors were encountered:
it is possible, they are quite easy to process just by splitting the line with split(" ", 2). I wanted to avoid storing more keys that needed in the file (the files are getting quite big), but I will discuss with Szonya.
I'm not sure how the log files are intended to be analysed so maybe this isn't relevant - but perhaps would be easier to process them if they were fully in JSON format?
i.e. change format from:
2024-08-08-13-34-41-120409 BurnFuelAction {"id":7400746113474275466646, ...
to:
{"time":"2024-08-08-13-34-41-120409","event":"BurnFuelAction","id":7400746113474275466646, ...
The text was updated successfully, but these errors were encountered: