From cef5d5f0f115ebfb98e6e5348206c8ac68365b81 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 18 Aug 2025 11:55:20 +1000 Subject: [PATCH] plugin: expand the plugin name prefix to 22 chars That's the longest name we have for our internal plugins so let's make sure those align nicely for easier debugging. (cherry picked from commit 537552480dd465938fd1fa67edd843716dc901f8) Part-of: --- src/libinput-plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libinput-plugin.c b/src/libinput-plugin.c index 0b43c76c..3fcce548 100644 --- a/src/libinput-plugin.c +++ b/src/libinput-plugin.c @@ -613,7 +613,7 @@ plugin_system_notify_evdev_frame(struct libinput_plugin_system *system, } #ifdef EVENT_DEBUGGING _autofree_ char *prefix = strdup_printf( - "%7s: plugin %-15s - ", + "%7s: plugin %-22s - ", libinput_device_get_sysname(event->device), plugin->name); print_frame(libinput_device_get_context(device),