From 2dabca03f404b4c5f0275b39dc6d103a26d43663 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 19 Aug 2015 19:55:40 -0400 Subject: [PATCH] Remove logging of all key presess This makes the logs a bit too hard to read --- sway/handlers.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/sway/handlers.c b/sway/handlers.c index 0bb181cc3..6889fb22a 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -322,9 +322,6 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier } bool cmd_success = false; - sway_log(L_DEBUG, "modifier %x: state %d: key %d, sym: %d", - modifiers->mods, state, key, sym); - //Revert floating container back to original position on keypress if (state == WLC_KEY_STATE_PRESSED && (dragging || resizing)) { reset_floating(get_focused_view(&root_container));