Browse Source

Дебаг

Book Pauk 2 years ago
parent
commit
ea38392df4
1 changed files with 3 additions and 1 deletions
  1. 3 1
      server/core/BookUpdateChecker/BUCServer.js

+ 3 - 1
server/core/BookUpdateChecker/BUCServer.js

@@ -222,8 +222,10 @@ class BUCServer {
                     });
 
                     //пушим в очередь, после этого их обработает periodicCheck
-                    for (const row of rowsToPush)
+                    for (const row of rowsToPush) {
                         this.checkQueue.push(row);
+                        log(LM_INFO, `    add ${row.id}`);
+                    }
                     
                     log(LM_WARN, `checkQueue: added ${ids.length} recs, total ${this.checkQueue.length}`);
                 }