mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-08-01 21:58:43 +00:00
chore: remove debug prints
This commit is contained in:
parent
c58d9560e7
commit
947fb33545
1 changed files with 0 additions and 3 deletions
|
@ -750,16 +750,13 @@ impl SimpleComponent for App {
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.is_some_and(|w| w.exit_code().is_none())
|
.is_some_and(|w| w.exit_code().is_none())
|
||||||
{
|
{
|
||||||
eprintln!(">>>>>>>>>>>>>>> prober already running!");
|
|
||||||
// prober already running
|
// prober already running
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let worker = JobWorker::new_with_timer(
|
let worker = JobWorker::new_with_timer(
|
||||||
Duration::from_millis(500),
|
Duration::from_millis(500),
|
||||||
WorkerJob::new_func(Box::new(move || {
|
WorkerJob::new_func(Box::new(move || {
|
||||||
println!(">>>>>>>>>>>>>>> probing now <<<<<<<<<<<<<<<<<<");
|
|
||||||
let ready = is_openxr_ready();
|
let ready = is_openxr_ready();
|
||||||
println!(">>>>>>>>>>>>>>> ready? {}", ready);
|
|
||||||
FuncWorkerOut {
|
FuncWorkerOut {
|
||||||
success: ready,
|
success: ready,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue