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);