From b32ffc79eb083a174fc252377cc972bd949f5844 Mon Sep 17 00:00:00 2001 From: Simone Margaritelli Date: Wed, 31 Aug 2022 18:37:05 +0200 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6b1fea4..6babf5f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -71,7 +71,6 @@ fn enable_inspection_port(pid: u32) -> Result { .map_err(|e| format!("could not find enumerate process open ports: {:?}", e))?; if let Some(port) = find_inspection_port(&ports_before) { - println!("inspection already enabled on port {}", port); return Ok(port); }