Skip to content

Commit

Permalink
feat: add current id update log
Browse files Browse the repository at this point in the history
  • Loading branch information
skifli authored Sep 30, 2024
1 parent 62a44cd commit 833d256
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bruty_server/src/server_threads.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ pub async fn results_progress_handler(
let current_id_receiver_try = current_id_receiver.try_recv();

if let Ok(id) = current_id_receiver_try {
log::info!(
"Received current ID update: {}",
id.iter().collect::<String>()
);
awaiting_current_id_update = id; // Get the current ID
}

Expand Down

0 comments on commit 833d256

Please sign in to comment.