From 40c48cb61a99738cc4ab87784ad746d98db15a7a Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Fri, 12 Jun 2026 12:17:36 -0600 Subject: [PATCH] Add logs for good sends --- index.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 08888db..b5e7d34 100644 --- a/index.js +++ b/index.js @@ -458,7 +458,10 @@ Example data object: }, 10 * 60 * 1000); let errCount = 0; function sendMessage() { - channel.send(thisMsg).catch((err) => { + channel.send(thisMsg).then((msg) => { + // Message sent successfully. Note in the logs + console.log(`${colors.cyan("[INFO]")} Sent message to ${channel.guild.name}/${channel.name} (${channel.guild.id}/${channel.id}). ${errCount}/3`); + }).catch((err) => { console.error(err); }).then((msg) => { if (msg.channel.type === Discord.ChannelType.GuildAnnouncement) msg.crosspost(); @@ -534,7 +537,10 @@ Example data object: let errCount = 0; function sendMessage() { - user.send(thisMsg).catch((err) => { + user.send(thisMsg).then((msg) => { + // Message sent successfully. Note in the logs + console.log(`${colors.cyan("[INFO]")} Sent message to ${user.tag} (${user.id}). ${errCount}/3`); + }).catch((err) => { console.log(`${colors.yellow("[WARN]")} Failed to send message to ${user.tag} (${user.id})`); if (errCount < 3) { errCount++;