From 794391cb518a9d8b1d58c5ff68764bdb9218bc3e Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 5 Apr 2018 11:05:14 +1000 Subject: [PATCH] touchpad: log the touch size thresholds if we're using them Signed-off-by: Peter Hutterer --- src/evdev-mt-touchpad.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/evdev-mt-touchpad.c b/src/evdev-mt-touchpad.c index 99cbcc56..f0b03533 100644 --- a/src/evdev-mt-touchpad.c +++ b/src/evdev-mt-touchpad.c @@ -3230,7 +3230,9 @@ tp_init_touch_size(struct tp_dispatch *tp, tp->touch_size.high = hi; tp->touch_size.use_touch_size = true; - evdev_log_debug(device, "using size-based touch detection\n"); + evdev_log_debug(device, + "using size-based touch detection (%d:%d)\n", + hi, lo); return true; }