mirror of
https://github.com/Art-Portal/April.git
synced 2024-11-16 19:47:34 +01:00
47a1cfcce3
Logs to discord using webhook
19 lines
508 B
JavaScript
19 lines
508 B
JavaScript
const { EmbedBuilder } = require("discord.js");
|
|
const { inspect } = require("util");
|
|
|
|
const errorEmbed = new EmbedBuilder().setColor("Red");
|
|
|
|
module.exports = {
|
|
name: 'error',
|
|
async execute() {
|
|
errorEmbed
|
|
.setTitle("Discord API Error")
|
|
.setURL("https://discordjs.guide/popular-topics/errors.html#api-errors")
|
|
.setDescription(
|
|
`\`\`\`${inspect(err, { depth: 0 }).slice(0, 1000)}\`\`\``
|
|
)
|
|
.setTimestamp();
|
|
|
|
return client.errorCatcherWebhook.send({ embeds: [errorEmbed] });
|
|
},
|
|
}; |