Remove debug prints

Joseph T Lyons created

Change summary

crates/client/src/telemetry.rs | 16 ++--------------
1 file changed, 2 insertions(+), 14 deletions(-)

Detailed changes

crates/client/src/telemetry.rs 🔗

@@ -196,16 +196,10 @@ impl Telemetry {
                             distinct_id: device_id,
                             set: json!({ "staff": is_staff, "id": metrics_id }),
                         }])?;
-
-                        eprintln!("request: {}", std::str::from_utf8(&json_bytes).unwrap());
-
                         let request = Request::post(MIXPANEL_ENGAGE_URL)
                             .header("Content-Type", "application/json")
                             .body(json_bytes.into())?;
-                        let response = this.http_client.send(request).await?;
-
-                        eprintln!("response: {:?} {:?}", response.status(), response.body());
-
+                        this.http_client.send(request).await?;
                         Ok(())
                     }
                     .log_err(),
@@ -281,16 +275,10 @@ impl Telemetry {
 
                         json_bytes.clear();
                         serde_json::to_writer(&mut json_bytes, &events)?;
-
-                        eprintln!("request: {}", std::str::from_utf8(&json_bytes).unwrap());
-
                         let request = Request::post(MIXPANEL_EVENTS_URL)
                             .header("Content-Type", "application/json")
                             .body(json_bytes.into())?;
-                        let response = this.http_client.send(request).await?;
-
-                        eprintln!("response: {:?} {:?}", response.status(), response.body());
-
+                        this.http_client.send(request).await?;
                         Ok(())
                     }
                     .log_err(),