Remove debugging println from lockdownd.rs

This commit is contained in:
Jackson Coxson
2025-01-08 19:35:46 -07:00
parent 29639be29a
commit 95cdb039e7

View File

@@ -115,7 +115,6 @@ impl LockdowndClient {
req.insert("Service".into(), identifier.into()); req.insert("Service".into(), identifier.into());
self.idevice.send_plist(plist::Value::Dictionary(req))?; self.idevice.send_plist(plist::Value::Dictionary(req))?;
let response = self.idevice.read_plist()?; let response = self.idevice.read_plist()?;
println!("{response:?}");
match response.get("EnableServiceSSL") { match response.get("EnableServiceSSL") {
Some(plist::Value::Boolean(ssl)) => match response.get("Port") { Some(plist::Value::Boolean(ssl)) => match response.get("Port") {
Some(plist::Value::Integer(port)) => { Some(plist::Value::Integer(port)) => {