From 2c7dd261894392b3e28ae15aca2e4372080158b7 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Thu, 8 Feb 2024 19:09:02 +0100 Subject: [PATCH] verbose console feedback --- commands/admin/custom_vc/slash.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/commands/admin/custom_vc/slash.js b/commands/admin/custom_vc/slash.js index 52dbfba..f825e41 100644 --- a/commands/admin/custom_vc/slash.js +++ b/commands/admin/custom_vc/slash.js @@ -68,6 +68,8 @@ export async function execute(interaction) { content: `Successfully created channel!`, ephemeral: true }); + + console.info(`[INFO] New custom VC created with ID '${channel.id}'.`); break; } case 'register': { @@ -83,6 +85,8 @@ export async function execute(interaction) { content: `Successfully registered channel!`, ephemeral: true }); + + console.info(`[INFO] New custom VC registered using ID '${id}'.`); break; } case 'remove': { @@ -108,6 +112,8 @@ export async function execute(interaction) { content: `${response} channel from custom channel creation!`, ephemeral: true }); + + console.info(`[INFO] Removed custom VC with ID '${id}'.`); break; } }