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));