summary refs log tree commit diff
path: root/rust/src/http/mod.rs
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2022-12-15 13:15:47 +0000
committerErik Johnston <erik@matrix.org>2022-12-15 13:15:47 +0000
commit684297439140971b12a37ea661f28b81eaefba47 (patch)
treee34a1acfe7f09ac489cfe7a6a3955ccacbe46d4e /rust/src/http/mod.rs
parentWIP Rust HTTP for federation (diff)
downloadsynapse-684297439140971b12a37ea661f28b81eaefba47.tar.xz
Fixup
Diffstat (limited to 'rust/src/http/mod.rs')
-rw-r--r--rust/src/http/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/rust/src/http/mod.rs b/rust/src/http/mod.rs
index b533a3d36d..508f7cb048 100644
--- a/rust/src/http/mod.rs
+++ b/rust/src/http/mod.rs
@@ -110,8 +110,6 @@ impl HttpClient {
         let bytes = hyper::body::to_bytes(body).await?;
         let content = Bytes(bytes.to_vec());
 
-        info!("DONE");
-
         Ok(MatrixResponse {
             code,
             phrase,
@@ -137,7 +135,6 @@ impl HttpClient {
         body: Option<Vec<u8>>,
     ) -> PyResult<&'a PyAny> {
         pyo3::prepare_freethreaded_python();
-        info!("REQUEST");
 
         let client = self.clone();