From dc7e84810bd66c4542e14977b38105a11b7a6c20 Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz Date: Sun, 29 Aug 2021 18:05:42 +0000 Subject: [PATCH] dbus: Hint that maybe squeekboard is running It seems that is Squeekboard is already running, the next instance will not fail to acquire a bus name, but instead lose it immediately. This message has been reported by users who experiment with Squeekboard for the first time, so let's make it easier for them to find the solution without having to reach out. --- src/server-main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server-main.c b/src/server-main.c index c465355c..9a3633f5 100644 --- a/src/server-main.c +++ b/src/server-main.c @@ -82,7 +82,7 @@ on_name_lost (GDBusConnection *connection, (void)connection; (void)name; (void)user_data; - g_error("DBus unavailable, unclear how to continue."); + g_warning("DBus unavailable, unclear how to continue. Is Squeekboard already running?"); exit (1); }