diff --git a/src/http_async.rs b/src/http_async.rs index d0895c7..35b6b8d 100644 --- a/src/http_async.rs +++ b/src/http_async.rs @@ -106,6 +106,11 @@ pub async fn get_body(url: &str) -> Result, String> { .await { Ok(res) => { + println!( + "[DEBUG] {} {}", + res.status().to_string().bright_yellow(), + url.bright_yellow() + ); let body = res.bytes().await.or(Err("Failed to get body"))?; Ok(body.to_vec()) }