diff options
| author | Teddy Wing | 2021-06-13 20:41:58 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2021-06-13 20:41:58 +0200 | 
| commit | 0f04d7cbb8052ed2a9d48a2579319e48e2305768 (patch) | |
| tree | fab869c6cca1bb832850153cd71110e6a37a8ef4 /src/main.rs | |
| parent | 3bf36e2c241448045d2f7c1ddccb684f2fbcfcc1 (diff) | |
| download | reflectub-0f04d7cbb8052ed2a9d48a2579319e48e2305768.tar.bz2 | |
run(): Remove debug print of the current thread
We know this runs on multiple threads now, so this debug line can be
removed.
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 | 
1 files changed, 0 insertions, 2 deletions
| 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( | 
