Skip to content

Commit

Permalink
Remove println in add_device
Browse files Browse the repository at this point in the history
  • Loading branch information
jkcoxson committed Jan 10, 2025
1 parent 4ced487 commit f51f02f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/add_device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ fn main() {

let mut buf = Vec::new();
let size = stream.read_to_end(&mut buf).unwrap();
println!("{:?}", buf);

let buffer = &mut buf[0..size].to_vec();
if size == 16 {
Expand All @@ -64,7 +63,6 @@ fn main() {
buffer.append(&mut packet);
}

println!("{:?}", buffer);
let parsed: raw_packet::RawPacket = buffer.try_into().unwrap();
match parsed.plist.get("Result") {
Some(plist::Value::Integer(r)) => {
Expand Down

0 comments on commit f51f02f

Please sign in to comment.