server: remove debug print

This commit is contained in:
Austin Alvarado 2024-01-25 14:15:20 -07:00 committed by nitnelave
parent 206e98c986
commit 93f3057b8f
1 changed files with 0 additions and 1 deletions

View File

@ -184,7 +184,6 @@ async fn run_server_command(opts: RunOpts) -> Result<()> {
let server = set_up_server(config).await?.workers(1);
dbg!("here");
server.run().await.context("while starting the server")
}