From 001097476a67057124536b753bbbef047961bab5 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 1 Aug 2012 13:33:41 +1000 Subject: [PATCH] Decorate the accel log messages with (accel) The MinSpeed message already does so, do it for MaxSpeed and AccelFactor too. Signed-off-by: Peter Hutterer --- src/synaptics.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/synaptics.c b/src/synaptics.c index 2144684..27a37d7 100644 --- a/src/synaptics.c +++ b/src/synaptics.c @@ -1199,9 +1199,9 @@ DeviceInit(DeviceIntPtr dev) * 100 packet/s by default. */ pVel->corr_mul = 12.5f; /*1000[ms]/80[/s] = 12.5 */ - xf86IDrvMsg(pInfo, X_CONFIG, "MaxSpeed is now %.2f\n", + xf86IDrvMsg(pInfo, X_CONFIG, "(accel) MaxSpeed is now %.2f\n", priv->synpara.max_speed); - xf86IDrvMsg(pInfo, X_CONFIG, "AccelFactor is now %.3f\n", + xf86IDrvMsg(pInfo, X_CONFIG, "(accel) AccelFactor is now %.3f\n", priv->synpara.accl); prop = XIGetKnownProperty(ACCEL_PROP_PROFILE_NUMBER);