From 1d97546bbeb4ead1b81625cc541c8dd8b2e16c71 Mon Sep 17 00:00:00 2001 From: Nickiel12 <35903114+Nickiel12@users.noreply.github.com> Date: Sat, 16 Jul 2022 19:32:48 -0700 Subject: [PATCH] thread start and stop debug statements --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 0f61ead..89eebe1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -40,7 +40,9 @@ fn main() { let control_c_called_flag_rx = setup_control_c(hotkey_close_flag_tx); let hotkey_handle = thread::spawn(move || { + println!("starting hotkey thread"); modules::external_interface::create_keyboard_hooks(hotkey_channel_tx, hotkey_close_flag_rx); + println!("closing hotkey thread"); }); let mut state = StreamState::new();