From 51f636ad0f928bb94069c9143e38df0518f6e4a7 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 15 Jun 2021 08:37:49 +0200 Subject: [PATCH] Display locale date time in parse log --- scripts/parse-log.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/parse-log.ts b/scripts/parse-log.ts index 5f4480c88..eb3851085 100755 --- a/scripts/parse-log.ts +++ b/scripts/parse-log.ts @@ -140,7 +140,7 @@ function toTimeFormat (time: string) { if (isNaN(timestamp) === true) return 'Unknown date' - return new Date(timestamp).toISOString() + return new Date(timestamp).toLocaleString() } function containsTags (loggerTags: string[], optionsTags: string[]) {