Log errors to a channel and also fix/improve error handling

This commit is contained in:
2024-04-25 12:33:55 -05:00
parent 1a1019b37b
commit 9cb8c24e58
7 changed files with 95 additions and 52 deletions

43
bot.js

@ -1,11 +1,12 @@
const fs = require('node:fs');
const { Client, Collection } = require("discord.js");
const {token} = require("./config/config.json");
const { Client, Collection, GatewayIntentBits, ActivityType } = require("discord.js");
const { token } = require("./config/config.json");
const { logChannelId } = require("./config/config.js");
const client = new Client({intents: ["Guilds"]});
const client = new Client({intents: [GatewayIntentBits.Guilds]});
client.commands = new Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
const commandFiles = fs.readdirSync("./commands").filter(file => file.endsWith(".js"));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
@ -14,7 +15,7 @@ for (const file of commandFiles) {
client.commands.set(command.data.name, command);
}
client.on('interactionCreate', async interaction => {
client.on("interactionCreate", async interaction => {
if (!interaction.isCommand()) return;
const command = client.commands.get(interaction.commandName);
@ -22,22 +23,48 @@ client.on('interactionCreate', async interaction => {
if (!command) return;
try {
// Show "Bot is thinking..."
await interaction.deferReply();
await command.execute(interaction);
} catch (error) {
console.error(error);
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
if (interaction.replied) {
await interaction.followUp("An unknown error occured while performing this command!");
}
else {
await interaction.editReply("An unknown error occured while performing this command!");
}
await logError(error, interaction);
}
});
client.on("error", async _error => {
/**
* @param {Error} error
* @param {import('discord.js').ChatInputCommandInteraction} interaction
*/
async function logError(error, interaction) {
const logChannel = client.channels.cache.get(logChannelId);
if (!logChannel) {
console.log("Couldn't find log channel with the given id: " + logChannelId);
return;
}
const message = await interaction.fetchReply();
let errMsg = `An error occured when performing \`/${interaction.commandName}\` (${interaction.options.data.map((option) => `${option.name}: \`${option.value}\``).join(", ")}) at ${message.url}\n`;
errMsg += `\`\`\`\n${error.stack ? error.stack : error}\n\`\`\``;
await logChannel.send(errMsg);
}
client.on("error", async error => {
console.error(error);
});
client.once("ready", () => {
console.log("Ready");
client.user.setActivity({
name: "use /take and /submit",
type: 0
type: ActivityType.Custom
});
});