Don't output response code for every request
This commit is contained in:
parent
a87bd2b9e9
commit
4eb3204240
|
@ -30,8 +30,6 @@ impl Networking for HyperNet {
|
|||
.expect("Failed to create POST request");
|
||||
let resp = client.request(req).await.expect("Failed to POST");
|
||||
|
||||
println!("Response: {}", resp.status());
|
||||
|
||||
let buf = hyper::body::to_bytes(resp)
|
||||
.await
|
||||
.expect("Failed to concat bytes");
|
||||
|
|
Loading…
Reference in New Issue