From 0f04d7cbb8052ed2a9d48a2579319e48e2305768 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 13 Jun 2021 20:41:58 +0200 Subject: run(): Remove debug print of the current thread We know this runs on multiple threads now, so this debug line can be removed. --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/main.rs b/src/main.rs index d256e1b..20efb18 100644 --- a/src/main.rs +++ b/src/main.rs @@ -121,8 +121,6 @@ fn run() -> Result<(), MultiError> { let errors: Vec<_> = repos .par_iter() .map(|repo| { - dbg!("Thread", std::thread::current().id()); - ( repo.name.clone(), process_repo( -- cgit v1.2.3