From 61b940266391bfd8b63bd4cb57c5b53370316af2 Mon Sep 17 00:00:00 2001 From: Arnaud Bailly Date: Thu, 10 Oct 2024 08:47:46 +0200 Subject: Log responses from client --- rust/src/web.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'rust') diff --git a/rust/src/web.rs b/rust/src/web.rs index a468cc7..8f56d3e 100644 --- a/rust/src/web.rs +++ b/rust/src/web.rs @@ -327,6 +327,7 @@ async fn send_test(input: &String, url: &String) -> Result { match response { Ok(response) => { let body = response.text().await.unwrap(); + info!("Response from {}: {}", url, body); Ok(body) } Err(e) => { -- cgit v1.2.3