Browse Source

将日志 与 机器人状态详情进行缓存,

hl 3 weeks ago
parent
commit
58ef9d3759
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/Interval.js

+ 3 - 3
src/Interval.js

@@ -105,7 +105,7 @@ function cacheLogs() {
     }, intervalInMilliseconds);
 }
 
-async function zz(value) {
+ function zz(value) {
     var thisTime = new Date().getTime()
     let port = value.port
     let n = 200
@@ -118,9 +118,9 @@ async function zz(value) {
             logger.info(`访问-日志相对目录:${logPath}`)
             const directoryPath = path.resolve(logPath);
             file.checkPathSync(directoryPath)
-            file.getLastFile(logPath, 5, async (fileNameList, _) => {
+            file.getLastFile(logPath, 5,  (fileNameList, _) => {
                 logger.info('-----文件:', fileNameList);
-                let result = await file.getLatestLogEntries(logPath, fileNameList.reverse(), n);
+                let result =  file.getLatestLogEntries(logPath, fileNameList.reverse(), n);
                 if (messlist.length === 0) {
                     value.messlist = result
                 } else {