From c2ac41f99ffc560a006847a99b6b0fa688c853d9 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Thu, 10 Oct 2024 11:24:54 -0400 Subject: [PATCH] add very important logging information --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index d5d3545..9abf00b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,6 +24,8 @@ async fn ping(ctx: Context<'_>) -> Result<(), Error> { async fn main() -> Result<(), Error> { dotenv::dotenv().ok(); + println!("Starting bot..."); + let token = env::var("DISCORD_BOT_TOKEN")?; let intents = serenity::GatewayIntents::non_privileged();