Merge branch 'wip/corey/spi-logging' into 'main'

atspicontext: Log failure to connect to a11y

See merge request GNOME/gtk!5270
This commit is contained in:
Matthias Clasen
2022-11-28 01:29:10 +00:00

View File

@@ -1631,7 +1631,7 @@ get_bus_address_dbus (GdkDisplay *display)
if (error != NULL)
{
GTK_DEBUG (A11Y, "Unable to acquire session bus: %s", error->message);
g_warning ("Unable to acquire session bus: %s", error->message);
g_error_free (error);
return NULL;
}
@@ -1648,8 +1648,8 @@ get_bus_address_dbus (GdkDisplay *display)
&error);
if (error != NULL)
{
GTK_DEBUG (A11Y, "Unable to acquire the address of the accessibility bus: %s",
error->message);
g_warning ("Unable to acquire the address of the accessibility bus: %s",
error->message);
g_error_free (error);
}