From 80c43caf71b3b3ec22bd868ef0ed4b28a8a63be6 Mon Sep 17 00:00:00 2001 From: Trisha Lefler Date: Fri, 25 Mar 2022 16:53:51 -0500 Subject: [PATCH] :mute: remove debugging stuff --- crates/ptth_server_gui/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/ptth_server_gui/src/main.rs b/crates/ptth_server_gui/src/main.rs index a8565ab..c5de016 100644 --- a/crates/ptth_server_gui/src/main.rs +++ b/crates/ptth_server_gui/src/main.rs @@ -54,9 +54,7 @@ fn main () let fltk_tx = fltk_tx.clone (); rt.spawn (async move { - eprintln! ("Entering channel task"); while let Some (_) = hit_rx.recv ().await { - eprintln! ("fltk_tx"); fltk_tx.send (Message::Hit); } });