Remove extra print

This commit is contained in:
Ben Wishovich 2022-11-30 17:31:14 -08:00
parent 0f8930b6f2
commit 2edc5b3b8b
1 changed files with 0 additions and 1 deletions

View File

@ -47,7 +47,6 @@ pub async fn handle_server_fns(
) -> impl IntoResponse {
// Axum Path extractor doesn't remove the first slash from the path, while Actix does
let fn_name = fn_name.replace("/", "");
println!("Body: {:#?}", &body);
let (tx, rx) = futures::channel::oneshot::channel();
std::thread::spawn({