From 537552480dd465938fd1fa67edd843716dc901f8 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. 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 de60a647..9bc0309e 100644 --- a/src/libinput-plugin.c +++ b/src/libinput-plugin.c @@ -761,7 +761,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),