From 7c46f8ed1cc414223005e7f01c68d69afc3d3022 Mon Sep 17 00:00:00 2001 From: therealwolf <76-therealwolf42@users.noreply.gitlab.syncad.com> Date: Fri, 24 Jul 2020 14:19:59 -0400 Subject: [PATCH] Removed console.log --- src/api/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/index.js b/src/api/index.js index ec606f0..505fafc 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -56,8 +56,8 @@ class Hive extends EventEmitter { }); this.callAsync = Promise.promisify(this.call); this.signedCallAsync = Promise.promisify(this.signedCall); - console.log("Alternate endpoints: ", this.options.alternative_api_endpoints); - console.log("Failover Threshold (errors): ", this.options.failover_threshold); + // console.log("Alternate endpoints: ", this.options.alternative_api_endpoints); + // console.log("Failover Threshold (errors): ", this.options.failover_threshold); this.notifyError = this.notifyError.bind(this); } @@ -401,7 +401,7 @@ class Hive extends EventEmitter { this.api_index = 0; } let nextEndpoint = this.alternative_api_endpoints[this.api_index]; - console.log("failing over. old endpoint was: ", current_url, " new one is: ", nextEndpoint); + // console.log("failing over. old endpoint was: ", current_url, " new one is: ", nextEndpoint); this.setOptions({url: nextEndpoint}); } } -- GitLab