From aa92d10687a83324ae98882eb16ec26aac1f83dd Mon Sep 17 00:00:00 2001 From: Matthew Sevey Date: Wed, 27 Apr 2022 16:23:46 -0400 Subject: [PATCH] remove debug console.log --- packages/health-check/src/utils.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/health-check/src/utils.js b/packages/health-check/src/utils.js index 9a35ad2a..b5909e36 100644 --- a/packages/health-check/src/utils.js +++ b/packages/health-check/src/utils.js @@ -173,7 +173,6 @@ async function skylinkHealthCheck(skylink, numRetries = 30, authCookie, isLarge // Semi-smart sleep before retrying. Sleep longer if the redundancy is // lower. let sleepTime = defaultBaseSectorRedundancy - healthData.basesectorredundancy; - console.log(`sleeping ${sleepTime}s for basesectorredundancy ${healthData.basesectorredundancy}`); await sleep(sleepTime); return skylinkHealthCheck(skylink, numRetries - 1, authCookie, isLarge); } @@ -183,7 +182,6 @@ async function skylinkHealthCheck(skylink, numRetries = 30, authCookie, isLarge // Semi-smart sleep before retrying. Sleep longer if the redundancy is // lower. let sleepTime = (defaultFanoutRedundancy - healthData.fanoutredundancy) * 10; - console.log(`sleeping ${sleepTime}s for fanout redundancy ${healthData.fanoutredundancy}`); await sleep(sleepTime); return skylinkHealthCheck(skylink, numRetries - 1, authCookie, isLarge); }