touchpad: extend two debug messages
authorPeter Hutterer <peter.hutterer@who-t.net>
Wed, 15 Apr 2015 05:33:41 +0000 (15:33 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Wed, 15 Apr 2015 05:38:44 +0000 (15:38 +1000)
Makes it quicker to know where it's coming from.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
src/evdev-mt-touchpad-tap.c

index b99249b..69c9669 100644 (file)
@@ -147,7 +147,7 @@ tp_tap_idle_handle_event(struct tp_dispatch *tp,
        case TAP_EVENT_RELEASE:
        case TAP_EVENT_MOTION:
                log_bug_libinput(libinput,
-                                "invalid event, no fingers are down\n");
+                                "invalid tap event, no fingers are down\n");
                break;
        case TAP_EVENT_TIMEOUT:
                break;
@@ -218,7 +218,7 @@ tp_tap_tapped_handle_event(struct tp_dispatch *tp,
        case TAP_EVENT_MOTION:
        case TAP_EVENT_RELEASE:
                log_bug_libinput(libinput,
-                                "invalid event when fingers are up\n");
+                                "invalid tap event when fingers are up\n");
                break;
        case TAP_EVENT_TOUCH:
                tp->tap.state = TAP_STATE_DRAGGING_OR_DOUBLETAP;