mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Prefer ISO date formatting
Previously, this was formatted using locale specific settings. This will allow easier debugging by matching key rotation timestamps against log timestamps.
This commit is contained in:
@@ -43,7 +43,10 @@
|
||||
var time = storage.get('nextSignedKeyRotationTime', now);
|
||||
|
||||
if (scheduledTime !== time || !timeout) {
|
||||
console.log('Next signed key rotation scheduled for', new Date(time));
|
||||
console.log(
|
||||
'Next signed key rotation scheduled for',
|
||||
new Date(time).toISOString()
|
||||
);
|
||||
}
|
||||
|
||||
scheduledTime = time;
|
||||
|
||||
Reference in New Issue
Block a user