From d97355207c040fb802eebe940379a25f82afaa29 Mon Sep 17 00:00:00 2001 From: epi Date: Thu, 4 Feb 2021 06:46:37 -0600 Subject: [PATCH] removed lint --- src/event_handlers/scans.rs | 2 -- src/main.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/event_handlers/scans.rs b/src/event_handlers/scans.rs index 8f82c95..601095e 100644 --- a/src/event_handlers/scans.rs +++ b/src/event_handlers/scans.rs @@ -154,9 +154,7 @@ impl ScanHandler { tokio::spawn(async move { while ferox_scans.has_active_scans() { for scan in ferox_scans.get_active_scans() { - log::debug!("FAFAFA joining {:?}", scan); scan.join().await; - log::debug!("FAFAFA joined {:?}", scan); } } limiter_clone.close(); diff --git a/src/main.rs b/src/main.rs index ffaf730..6b24bf2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -29,8 +29,6 @@ use feroxbuster::{utils::set_open_file_limit, DEFAULT_OPEN_FILE_LIMIT}; /// Create a HashSet of Strings from the given wordlist then stores it inside an Arc fn get_unique_words_from_wordlist(path: &str) -> Result>> { - // todo i'd like to try moving this into the handler and passing the arc into FeroxScanner to - // see how that impacts memory usage log::trace!("enter: get_unique_words_from_wordlist({})", path); let file = File::open(&path).with_context(|| format!("Could not open {}", path))?;