From 947fb335459e2e92927e507b9efeb3d04a6598ef Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Sat, 27 Jul 2024 09:56:18 +0200 Subject: [PATCH] chore: remove debug prints --- src/ui/app.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ui/app.rs b/src/ui/app.rs index fecd98e..93e64a5 100644 --- a/src/ui/app.rs +++ b/src/ui/app.rs @@ -750,16 +750,13 @@ impl SimpleComponent for App { .as_ref() .is_some_and(|w| w.exit_code().is_none()) { - eprintln!(">>>>>>>>>>>>>>> prober already running!"); // prober already running return; } let worker = JobWorker::new_with_timer( Duration::from_millis(500), WorkerJob::new_func(Box::new(move || { - println!(">>>>>>>>>>>>>>> probing now <<<<<<<<<<<<<<<<<<"); let ready = is_openxr_ready(); - println!(">>>>>>>>>>>>>>> ready? {}", ready); FuncWorkerOut { success: ready, ..Default::default()