diff --git a/commands/message/dev/debug/test.js b/commands/message/dev/debug/test.js index f421834..0f493bd 100644 --- a/commands/message/dev/debug/test.js +++ b/commands/message/dev/debug/test.js @@ -19,7 +19,6 @@ module.exports = { if(!args.text) args.text = "" try { let mkswt = await flag(image) - console.log(mkswt.body) return editOrReply(context, { content:"ww", files: [{ filename: "makesweet.gif", value: mkswt.body diff --git a/commands/message/utils/ocr.js b/commands/message/utils/ocr.js index 499672d..90ef151 100644 --- a/commands/message/utils/ocr.js +++ b/commands/message/utils/ocr.js @@ -18,8 +18,6 @@ module.exports = { let image = await getRecentImage(context, 50) if (!image) return editOrReply(context, { embeds: [createEmbed("warning", context, "No images found.")] }) - console.log(image) - let ocr = await googleVisionOcr(context, image) if(ocr.response.body.text.length == 0) return editOrReply(context, { embeds: [createEmbed("warning", context, "No text detected.")] }) diff --git a/labscore/utils/attachment.js b/labscore/utils/attachment.js index 3cb832f..1e82447 100644 --- a/labscore/utils/attachment.js +++ b/labscore/utils/attachment.js @@ -86,7 +86,6 @@ module.exports.getRecentVideo = async function(context, limit) { } function validateAttachment(attachment, type){ - console.log(attachment) let allowedTypes = attachmentTypes[type] if (attachment.contentType && allowedTypes.includes(attachment.contentType)) { // discord attachment return true