Update log filename format to include timestamp

This commit is contained in:
Gernomaly 2026-02-13 01:29:20 +01:00 committed by GitHub
parent b01facc034
commit 7e42074f46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,7 +54,7 @@ class LibraryScan {
return secondsToTimestamp(this.elapsed / 1000)
}
get logFilename() {
return date.format(new Date(), 'YYYY-MM-DD') + '_' + this.id + '.txt'
return date.format(new Date(), 'YYYY-MM-DD HH:mm:ss.SSS') + '_' + this.id + '.txt'
}
get scanResultsString() {
const strs = []