From d1f1563aab412524a1daf915ffccdabc6e07355e Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 12 Jun 2014 11:48:13 +1000 Subject: [PATCH] path: log two errors as application bugs Signed-off-by: Peter Hutterer --- src/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/path.c b/src/path.c index 80d46337..27e5ad63 100644 --- a/src/path.c +++ b/src/path.c @@ -264,7 +264,7 @@ libinput_path_add_device(struct libinput *libinput, struct libinput_device *device; if (libinput->interface_backend != &interface_backend) { - log_error("Mismatching backends. This is an application bug.\n"); + log_bug_client("Mismatching backends.\n"); return NULL; } @@ -301,7 +301,7 @@ libinput_path_remove_device(struct libinput_device *device) struct path_device *dev; if (libinput->interface_backend != &interface_backend) { - log_error("Mismatching backends. This is an application bug.\n"); + log_bug_client("Mismatching backends.\n"); return; }