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