]> git.sur5r.net Git - i3/i3/commitdiff
Don't log motion notify 1821/head
authorTony Crisci <tony@dubstepdish.com>
Fri, 31 Jul 2015 02:40:38 +0000 (22:40 -0400)
committerTony Crisci <tony@dubstepdish.com>
Fri, 31 Jul 2015 02:40:38 +0000 (22:40 -0400)
Do not log an XCB_MOTION_NOTIFY event in handlers.c because this
clutters the log.

Only log in the motion notify handler if something important happens.

src/handlers.c

index d7d48a1cfb5847c9cfcf5c1ce728717d495925d1..8e08d697c505641ed5ed46c0171fea6045862dcc 100644 (file)
@@ -1319,7 +1319,9 @@ static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom)
  *
  */
 void handle_event(int type, xcb_generic_event_t *event) {
-    DLOG("event type %d, xkb_base %d\n", type, xkb_base);
+    if (type != XCB_MOTION_NOTIFY)
+        DLOG("event type %d, xkb_base %d\n", type, xkb_base);
+
     if (randr_base > -1 &&
         type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
         handle_screen_change(event);