From 3ecb89c70d36a89e6c6cc0621fb47d14dddb1165 Mon Sep 17 00:00:00 2001 From: Sofia Talarmo Date: Sat, 16 Mar 2024 22:09:58 +0200 Subject: [PATCH] Remove debug logs --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 141ce38..261dca5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -49,7 +49,6 @@ async fn main() -> Result<(), Box> { .init() .expect("stderrlog could not be initialized!"); - dbg!("hello?"); match start_serving(config).await { Ok(_) => Ok(()), Err(e) => { @@ -60,8 +59,6 @@ async fn main() -> Result<(), Box> { } async fn start_serving(config: Config) -> Result<(), StartingError> { - dbg!("hello?"); - let mut client = Client::builder(&config.discord_token, GatewayIntents::empty()).await?; let addr = SocketAddr::from((config.host, config.port));