From ebfb153d4402088933d8f17690899e4cda9d45f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Sun, 7 May 2023 21:32:58 +0200 Subject: [PATCH] Remove debug output --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 960331c..271512c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,7 +28,6 @@ fn find_device() -> Result, HidError> { } fn hex_prop_is(proplist: &Proplist, prop_name: &str, expected: u16) -> bool { - println!("{}", proplist.get_str(prop_name).unwrap()); proplist .get_str(prop_name) .map(|prop| prop.trim_start_matches("0x").to_owned())