add debug info

This commit is contained in:
Aiden McClelland
2024-01-24 14:41:34 -07:00
parent 4faf4b4e95
commit 479a3c4f4d

View File

@@ -110,11 +110,13 @@ pub async fn call_remote_http(
req = req.header("accept", "application/json");
body = serde_json::to_vec(&req)?;
}
dbg!();
let res = req
.header("content-length", body.len())
.body(body)
.send()
.await?;
dbg!();
match res
.headers()