summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-11-28 01:29:10 +0000
committerMatthias Clasen <mclasen@redhat.com>2022-11-28 01:29:10 +0000
commit90c986e493eeaa2c95ca53c88be3e3b19086e0c3 (patch)
tree50038691b685c55b68a17cec30c8033875a9e4a5 /gtk
parented6798e94cce6d68f8226e96906fab623ab6c919 (diff)
parent16fd72e6061d8c2161f6cfb8bfcdda839b2765a4 (diff)
downloadgtk+-90c986e493eeaa2c95ca53c88be3e3b19086e0c3.tar.gz
Merge branch 'wip/corey/spi-logging' into 'main'
atspicontext: Log failure to connect to a11y See merge request GNOME/gtk!5270
Diffstat (limited to 'gtk')
-rw-r--r--gtk/a11y/gtkatspicontext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/a11y/gtkatspicontext.c b/gtk/a11y/gtkatspicontext.c
index b098377de5..4981ef269a 100644
--- a/gtk/a11y/gtkatspicontext.c
+++ b/gtk/a11y/gtkatspicontext.c
@@ -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);
}