added expect messages for docker

This commit is contained in:
liyunze 2025-11-10 17:56:02 +11:00
parent c16b5a01cb
commit f78292d6cd

View file

@ -37,5 +37,9 @@ async fn main() {
let client = serenity::ClientBuilder::new(token, intents)
.framework(framework)
.await;
client.unwrap().start().await.unwrap();
client
.expect("Client failed to start")
.start()
.await
.expect("Client failed to start 2");
}