From 721426a1bec18810b5a8a5752cd2e9a1d177fd47 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 12 Sep 2024 14:59:38 +1000 Subject: [PATCH] test: highlight the gesture state machine log messages in yellow Part-of: --- test/litest.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/litest.c b/test/litest.c index 5ad0a77c..7070435e 100644 --- a/test/litest.c +++ b/test/litest.c @@ -702,6 +702,8 @@ litest_log_handler(struct libinput *libinput, color = ANSI_CYAN; else if (strstr(format, "edge-scroll:")) color = ANSI_BRIGHT_GREEN; + else if (strstr(format, "gesture:")) + color = ANSI_BRIGHT_YELLOW; fprintf(stderr, "%slitest %s ", color, priority); vfprintf(stderr, format, args);