diff options
| author | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-10 08:47:46 +0200 |
|---|---|---|
| committer | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-10-10 08:47:46 +0200 |
| commit | 61b940266391bfd8b63bd4cb57c5b53370316af2 (patch) | |
| tree | 0df24b4cc38d83859a9003f05d7c233f7245dc31 | |
| parent | b6643fd5226ee85f13384ab833abef07f8f97dfa (diff) | |
| download | lambda-nantes-61b940266391bfd8b63bd4cb57c5b53370316af2.tar.gz | |
Log responses from client
| -rw-r--r-- | rust/src/web.rs | 1 |
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) => { |
