From 0d3c53c9ed7f9d718deb8ac071d07b6b571ae04e Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 2 Nov 2023 20:55:40 +0300 Subject: [PATCH] clear console log --- backend_integration.js | 1 - tradebot.js | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/backend_integration.js b/backend_integration.js index 9e3a914..0ce1b94 100644 --- a/backend_integration.js +++ b/backend_integration.js @@ -13,7 +13,6 @@ class BackendIntegration { } async pulse() { - console.log("request pulse"); return await axios.get(`${this.url}/api/pulse/db`, {headers:{Cookie:`secretkey=${this.secret_key};`}}).then( response => { this.up = response.status === 200; diff --git a/tradebot.js b/tradebot.js index 93ef8e1..7271d2f 100644 --- a/tradebot.js +++ b/tradebot.js @@ -64,8 +64,7 @@ client.on('webSession', function(sessionID, cookies) { process.exit(1); // Fatal error since we couldn't get our API key return; } - - console.log("Got API key: " + manager.apiKey); + console.log("Web session created!"); }); community.setCookies(cookies);