From a9502d4f66f66c67e63819e0b4abbaba2609d8f7 Mon Sep 17 00:00:00 2001 From: = Date: Tue, 6 Jul 2021 17:42:19 -0400 Subject: [PATCH] removing janky debugging --- functions.js | 4 ---- index.js | 3 +-- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/functions.js b/functions.js index 67237be..09ae5f0 100644 --- a/functions.js +++ b/functions.js @@ -3,7 +3,6 @@ const fs = require('fs'); const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js')); const gifFiles = fs.readdirSync('./gifs').filter(file => file.endsWith('.js')); const pastaFiles = fs.readdirSync('./pastas').filter(file => file.endsWith('.js')); -const debug = true; module.exports = { getCommandFiles(client) { @@ -12,7 +11,6 @@ module.exports = { const command = require(`./commands/${file}`); client.commands.set(command.name, command); } - if (debug) console.log(client.commands); }, getGifFiles(client) { client.gifs = new Discord.Collection(); @@ -20,7 +18,6 @@ module.exports = { const gif = require(`./gifs/${file}`); client.gifs.set(gif.name, gif); } - if (debug) console.log(client.gifs); }, getPastaFiles(client) { client.pastas = new Discord.Collection(); @@ -28,7 +25,6 @@ module.exports = { const pasta = require(`./pastas/${file}`); client.pastas.set(pasta.name, pasta); } - if (debug) console.log(client.pastas); }, getFileInfo(content) { // const finalPeriod = content.search(/\.(?:.(?!\\))+$/gim); diff --git a/index.js b/index.js index 2309165..a86bae3 100644 --- a/index.js +++ b/index.js @@ -5,9 +5,8 @@ dotenv.config(); const Discord = require('discord.js'); const client = new Discord.Client(); -const debug = true; // const config = require('./config.json'); -const { prefix, logChannel, bootMessage, shutdownMessage } = require('./config.json'); +// const { prefix, logChannel, bootMessage, shutdownMessage } = require('./config.json'); // const owner = process.env.ownerID; const giphy = require('giphy-api')(process.env.giphyAPIKey);