touchpad: extend two debug messages

Makes it quicker to know where it's coming from.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2015-04-15 15:33:41 +10:00
parent a5c7de04c4
commit 120199514b

View 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;