Remove debug statement

master
Edward Shen 2021-07-15 10:48:25 -04:00
parent 84941e2cb4
commit b71253d8dc
Signed by: edward
GPG Key ID: 19182661E818369F
1 changed files with 0 additions and 1 deletions

View File

@ -179,7 +179,6 @@ pub async fn update_server_state(
let req = Request::from_config_and_state(secret, cli);
debug!("Sending ping request: {:?}", req);
let client = reqwest::Client::new();
dbg!(serde_json::to_string(&req).unwrap());
let resp = client.post(CONTROL_CENTER_PING_URL).json(&req).send().await;
match resp {
Ok(resp) => match resp.json::<Response>().await {