Changeset 382 for binary-improvements2/MapRendering/Web/SSE/EventLog.cs
- Timestamp:
- Aug 1, 2022, 12:54:31 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/MapRendering/Web/SSE/EventLog.cs
r369 r382 12 12 string date = $"{_timestamp.Year:0000}-{_timestamp.Month:00}-{_timestamp.Day:00}"; 13 13 string time = $"{_timestamp.Hour:00}:{_timestamp.Minute:00}:{_timestamp.Second:00}"; 14 string isotime = _timestamp.ToString ("o"); 14 15 string uptime = _uptime.ToString (); 15 16 string message = _plainMsg; … … 21 22 data.Add ("date", new JSONString (date)); 22 23 data.Add ("time", new JSONString (time)); 24 data.Add ("isotime", new JSONString (isotime)); 23 25 data.Add ("uptime", new JSONString (uptime)); 24 26
Note:
See TracChangeset
for help on using the changeset viewer.