@certik/skynet 0.10.63 → 0.10.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.64
4
+
5
+ - Refactored: remove full result verbose log in `exponentialRetry()`
6
+
3
7
  ## 0.10.63
4
8
 
5
9
  - Refactored: added verbose conclusive log in `exponentialRetry()`
package/availability.js CHANGED
@@ -45,7 +45,6 @@ async function exponentialRetry(func, { maxRetry, initialDuration, growFactor, t
45
45
 
46
46
  if (verbose) {
47
47
  console.log(`function to retry ends with status ${test(result)}, number of retries done: ${maxRetry - retries}}`);
48
- console.log("final result", result);
49
48
  }
50
49
 
51
50
  return result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.10.63",
3
+ "version": "0.10.64",
4
4
  "description": "Skynet Shared JS library",
5
5
  "main": "index.js",
6
6
  "author": "CertiK Engineering",