From 0cf7f46f22b072d005e4bb5a5e4d660dfa2d3095 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 23 Jun 2023 18:49:28 +0200 Subject: [PATCH] send: remove dumping response body on http error --- src/send.rs | 1 - 1 file changed, 1 deletion(-) 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)) } }