From 72718c7c625863645423103f1e61edebdf260722 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 23 Mar 2017 01:13:45 +0000 Subject: [PATCH] Stop LOGGING ALL THE THINGS --- commands/search/google.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/commands/search/google.js b/commands/search/google.js index d34b1a54..ad79d76b 100644 --- a/commands/search/google.js +++ b/commands/search/google.js @@ -33,10 +33,6 @@ module.exports = class DefineCommand extends commando.Command { if (!href) return Promise.reject(new Error('NO RESULTS')); href = querystring.parse(href.replace('/url?', '')); message.channel.send(href.q); - console.log(href.q); - console.log(href); - console.log(thingToSearch); - console.log(SEARCH_URL); }).catch(function (err) { message.channel.send(':x: Error! No Results Found!'); });