Display locale date time in parse log

pull/4161/head
Chocobozzz 2021-06-15 08:37:49 +02:00
parent e54bd458c1
commit 51f636ad0f
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -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[]) {