diff --git a/src/send.rs b/src/send.rs index 3cb1c28..9c07a7d 100644 --- a/src/send.rs +++ b/src/send.rs @@ -60,7 +60,6 @@ pub async fn send_raw( histogram!("relay_http_response_duration", t3 - t2, "res" => "err", "host" => host); tracing::error!("send_raw {} response HTTP {}", url, res.status()); let response = res.text().await?; - tracing::error!("send_raw {} response body: {:?}", url, response); Err(Error::Response(response)) } }