From 1d794d9bf7a79ef317c88f6c08ae9af0f5f3ac6b Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 6 May 2017 05:09:28 +0000 Subject: [PATCH] ??? --- commands/random/cleverbot.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/random/cleverbot.js b/commands/random/cleverbot.js index d0b1f9fc..e985b594 100644 --- a/commands/random/cleverbot.js +++ b/commands/random/cleverbot.js @@ -29,6 +29,7 @@ module.exports = class CleverbotCommand extends Command { const { body } = await request .post('https://cleverbot.io/1.0/ask') .send({ user: process.env.CLEVS_USER, key: process.env.CLEVS_KEY, text }); + console.log(body.status, body.response, body); if(body.status !== 'success') throw new Error(body.status); return msg.reply(body.response); } catch(err) {