summaryrefslogtreecommitdiff
path: root/rust/src
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src')
-rw-r--r--rust/src/web.rs1
1 files changed, 1 insertions, 0 deletions
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<String, TestResult> {
match response {
Ok(response) => {
let body = response.text().await.unwrap();
+ info!("Response from {}: {}", url, body);
Ok(body)
}
Err(e) => {