hollowtrucker77 said:It was clearly a system reset, so this is the initial system time.
That isn't the "initial system time," it's just a timestamp of 0. 😁
A timestamp is just how computers represent time using an integer. If the difference between two timestamps is 1, it means one is exactly one second ahead of the other. For a timestamp of 0, the reference point used is January 1, 1970, at 00:00:00 UTC. So:
...
-1 = December 31, 1969, 23:59:59 (UTC)
0 = January 1, 1970, 00:00:00 (UTC)
1 = January 1, 1970, 00:00:01 (UTC)
...
The message above is obviously just an empty entry where all fields were initialized to their default values, including the date and time field. It was likely set to a value that evaluates to the integer 0 before being converted into a date/time format. In practice, this could be anything: an empty string, the integer 0, or a NULL value...
There. If you get it, you get it. If you don't, don't even bother. 😬