Remove stray printlns

This commit is contained in:
Jackson Coxson
2025-07-19 17:05:57 -06:00
parent d1a5a0606a
commit 9793610d94
2 changed files with 1 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
use log::warn; use log::warn;
use serde::Deserialize; use serde::Deserialize;
use crate::{obf, pretty_print_plist, IdeviceError, ReadWrite, RsdService}; use crate::{obf, IdeviceError, ReadWrite, RsdService};
use super::CoreDeviceServiceClient; use super::CoreDeviceServiceClient;
@@ -346,7 +346,6 @@ impl<R: ReadWrite> AppServiceClient<R> {
}; };
let res = ns_keyed_archive::decode::from_bytes(&res)?; let res = ns_keyed_archive::decode::from_bytes(&res)?;
println!("{}", pretty_print_plist(&res));
match plist::from_value(&res) { match plist::from_value(&res) {
Ok(r) => Ok(r), Ok(r) => Ok(r),
Err(e) => { Err(e) => {

View File

@@ -124,7 +124,6 @@ async fn main() {
// Make the connection to RemoteXPC // Make the connection to RemoteXPC
let mut handshake = RsdHandshake::new(stream).await.unwrap(); let mut handshake = RsdHandshake::new(stream).await.unwrap();
println!("{:?}", handshake.services);
let mut asc = AppServiceClient::connect_rsd(&mut adapter, &mut handshake) let mut asc = AppServiceClient::connect_rsd(&mut adapter, &mut handshake)
.await .await