Browse Source

storage-node: conistent log message

Mokhtar Naamani 3 years ago
parent
commit
1587b77d26
1 changed files with 2 additions and 2 deletions
  1. 2 2
      storage-node/packages/colossus/lib/sync.js

+ 2 - 2
storage-node/packages/colossus/lib/sync.js

@@ -48,9 +48,9 @@ async function syncContent({ api, storage, contentBeingSynced, contentCompleteSy
   while (contentBeingSynced.size < MAX_CONCURRENT_SYNC_ITEMS && candidatesForSync.length) {
     const id = candidatesForSync.shift()
 
-    // Log progress every 100 items
+    // Log progress
     if (syncedItemsCount % 100 === 0) {
-      debug(`${candidatesForSync.length} items remaining to sync.`)
+      debug(`${candidatesForSync.length} items remaining to process`)
     }
 
     try {