Remove debug logs
This commit is contained in:
parent
4109accb53
commit
3ecb89c70d
@ -49,7 +49,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
|||||||
.init()
|
.init()
|
||||||
.expect("stderrlog could not be initialized!");
|
.expect("stderrlog could not be initialized!");
|
||||||
|
|
||||||
dbg!("hello?");
|
|
||||||
match start_serving(config).await {
|
match start_serving(config).await {
|
||||||
Ok(_) => Ok(()),
|
Ok(_) => Ok(()),
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
@ -60,8 +59,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async fn start_serving(config: Config) -> Result<(), StartingError> {
|
async fn start_serving(config: Config) -> Result<(), StartingError> {
|
||||||
dbg!("hello?");
|
|
||||||
|
|
||||||
let mut client = Client::builder(&config.discord_token, GatewayIntents::empty()).await?;
|
let mut client = Client::builder(&config.discord_token, GatewayIntents::empty()).await?;
|
||||||
|
|
||||||
let addr = SocketAddr::from((config.host, config.port));
|
let addr = SocketAddr::from((config.host, config.port));
|
||||||
|
Loading…
Reference in New Issue
Block a user