From bef49850640d704cc5327f5b9aa4c5122b077d9b Mon Sep 17 00:00:00 2001 From: hydrabolt Date: Sun, 27 Sep 2015 17:06:16 +0100 Subject: [PATCH] Removed debug info whoops --- lib/Client.js | 2 -- src/Client.js | 2 -- 2 files changed, 4 deletions(-) diff --git a/lib/Client.js b/lib/Client.js index c6cbb5903..a885c6c28 100644 --- a/lib/Client.js +++ b/lib/Client.js @@ -1430,7 +1430,6 @@ var Client = (function () { } self.startPM(destination).then(function (pmc) { - console.log(pmc); resolve(pmc.id); })["catch"](reject); } else { @@ -1685,7 +1684,6 @@ var Client = (function () { } var fn = function fn() { - console.log(Endpoints.CHANNELS + "/" + channel + "/typing"); request.post(Endpoints.CHANNELS + "/" + channel + "/typing").set("authorization", self.token).end(); }; diff --git a/src/Client.js b/src/Client.js index 58ad78c49..f6b8859d1 100644 --- a/src/Client.js +++ b/src/Client.js @@ -1168,7 +1168,6 @@ class Client { //we don't, at this point we're late self.startPM(destination).then(function (pmc) { - console.log(pmc); resolve(pmc.id); }).catch(reject); @@ -1420,7 +1419,6 @@ class Client { } var fn = function(){ - console.log(`${Endpoints.CHANNELS}/${channel}/typing`); request .post(`${Endpoints.CHANNELS}/${channel}/typing`) .set("authorization", self.token)