From 9c6204b19bd540bc8163f52089e8d2a8740f02cd Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Sun, 26 Feb 2023 12:18:44 -0500 Subject: [PATCH] Some more logging --- modules/functions.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/functions.js b/modules/functions.js index 8c91569..473cfc1 100755 --- a/modules/functions.js +++ b/modules/functions.js @@ -689,6 +689,7 @@ const functions = { async sendWaterReminder(guildInfo, message, channelId, guild) { const reminderChannel = await guild.channels.fetch(channelId); const reminderEmbed = functions.builders.waterReminderEmbed(message, guildInfo); + console.log(`Water Relay: ${guild.name}: ${guildInfo.treeName}`); await reminderChannel.send(reminderEmbed).then(async m => { if (!m.deletable) return; await this.sleep(500).then(async () => { @@ -701,6 +702,7 @@ const functions = { async sendFruitReminder(guildInfo, message, channelId, guild) { const reminderChannel = await guild.channels.fetch(channelId); const reminderEmbed = functions.builders.fruitReminderEmbed(message, guildInfo); + console.log(`Fruit Relay: ${guild.name}: ${guildInfo.treeName}`); await reminderChannel.send(reminderEmbed).then(async m => { if (!m.deletable) return; await this.sleep(500).then(async () => {