From ef76b1df0483eb1913405316ee888b6ec5af1bf5 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 3 Oct 2023 08:32:59 +0400 Subject: Remove unnecessary trace!() --- src/input.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/input.rs') diff --git a/src/input.rs b/src/input.rs index 9d46eb28..b52d5c77 100644 --- a/src/input.rs +++ b/src/input.rs @@ -96,7 +96,6 @@ fn action( impl State { pub fn process_input_event(&mut self, event: InputEvent) { let _span = tracy_client::span!("process_input_event"); - trace!("process_input_event"); // A bit of a hack, but animation end runs some logic (i.e. workspace clean-up) and it // doesn't always trigger due to damage, etc. So run it here right before it might prove -- cgit