Added deviceId in addition to inode to uniquely identify files

This commit is contained in:
Jason Axley 2025-08-15 09:09:06 -07:00
parent d8f07eb956
commit 3a4aacb7bf
17 changed files with 1445 additions and 227 deletions

View file

@ -169,10 +169,10 @@ class LogManager {
/**
* Most recent 5000 daily logs
*
* @returns {string}
* @returns {LogObject[]}
*/
getMostRecentCurrentDailyLogs() {
return this.currentDailyLog?.logs.slice(-5000) || ''
return this.currentDailyLog?.logs.slice(-5000) || []
}
}
module.exports = LogManager