From 7314b623219f93384c08dd6f7fa33def082a8419 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Wed, 15 Jun 2022 12:30:23 +0200 Subject: [PATCH] fix: remove obsolete logs (#1504) --- zellij-client/src/input_handler.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zellij-client/src/input_handler.rs b/zellij-client/src/input_handler.rs index d0bfe26b..084019c5 100644 --- a/zellij-client/src/input_handler.rs +++ b/zellij-client/src/input_handler.rs @@ -249,11 +249,8 @@ impl InputHandler { } } self.dispatch_action(Action::Detach, None); - // is this correct? should be just for this current client self.should_exit = true; log::error!("Quitting Now. Dispatched the actions"); - // std::process::exit(0); - //self.dispatch_action(Action::NoOp); self.exit(); } @@ -299,7 +296,6 @@ impl InputHandler { | Action::ToggleTab | Action::MoveFocusOrTab(_) => { self.command_is_executing.blocking_input_thread(); - log::error!("Blocking input thread."); self.os_input .send_to_server(ClientToServerMsg::Action(action, client_id)); self.command_is_executing