From 05fabcf65bdfc4a27e86c66d4804febaeb604ced Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Fri, 20 Dec 2024 17:39:38 +0100 Subject: [PATCH] Logging the token --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index ba54f03..db8a784 100755 --- a/index.js +++ b/index.js @@ -32,6 +32,8 @@ client.dmCommands = new Discord.Collection(); // all the private commands require(`./handlers/${handler}`)(client); }); +console.log("Discord token", process.env.DISCORD_TOKEN); + //login into the bot client.login(process.env.DISCORD_TOKEN);