Print timestamp strings in logs using ISO 8601 formatting (e.g. 2018-02-28T12:34:56Z):
Zis the zone designator for the zero UTC offset.Tis the delimiter used to separate date and time.
This makes it clear for the end-user that the date/time logged is specified in UTC and not in the local time zone.
Before this patch:
2018-02-28 12:34:56 New outbound peer connected: version: 70015, blocks=1286123, peer=0
After this patch:
2018-02-28T12:34:56Z New outbound peer connected: version: 70015, blocks=1286123, peer=0