Add logs for good sends
Some checks are pending
ptero-push / build (push) Waiting to run

This commit is contained in:
Christopher Cookman 2026-06-12 12:17:36 -06:00
parent f865daaf3b
commit 40c48cb61a

View file

@ -458,7 +458,10 @@ Example data object:
}, 10 * 60 * 1000); }, 10 * 60 * 1000);
let errCount = 0; let errCount = 0;
function sendMessage() { 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); console.error(err);
}).then((msg) => { }).then((msg) => {
if (msg.channel.type === Discord.ChannelType.GuildAnnouncement) msg.crosspost(); if (msg.channel.type === Discord.ChannelType.GuildAnnouncement) msg.crosspost();
@ -534,7 +537,10 @@ Example data object:
let errCount = 0; let errCount = 0;
function sendMessage() { 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})`); console.log(`${colors.yellow("[WARN]")} Failed to send message to ${user.tag} (${user.id})`);
if (errCount < 3) { if (errCount < 3) {
errCount++; errCount++;