summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.bailly@iohk.io>2024-10-10 08:47:46 +0200
committerArnaud Bailly <arnaud.bailly@iohk.io>2024-10-10 08:47:46 +0200
commit61b940266391bfd8b63bd4cb57c5b53370316af2 (patch)
tree0df24b4cc38d83859a9003f05d7c233f7245dc31
parentb6643fd5226ee85f13384ab833abef07f8f97dfa (diff)
downloadlambda-nantes-61b940266391bfd8b63bd4cb57c5b53370316af2.tar.gz
Log responses from client
-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) => {