[gtk/matthiasc/a11y: 7/8] atspicontext: Print out the a11y bus address
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/matthiasc/a11y: 7/8] atspicontext: Print out the a11y bus address
- Date: Fri, 9 Oct 2020 19:17:28 +0000 (UTC)
commit 929ca8b1c962749d430fcb26dc77641e81fec9a0
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Oct 9 15:15:45 2020 -0400
atspicontext: Print out the a11y bus address
Make our debug spew useful: Having the bus address
makes it easy to jump on the a11y bus to look around
with dbus tools.
gtk/a11y/gtkatspicontext.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/gtk/a11y/gtkatspicontext.c b/gtk/a11y/gtkatspicontext.c
index 89c4499f6f..46f4f307f7 100644
--- a/gtk/a11y/gtkatspicontext.c
+++ b/gtk/a11y/gtkatspicontext.c
@@ -323,7 +323,7 @@ get_bus_address (GdkDisplay *display)
bus_address = g_getenv ("AT_SPI_BUS_ADDRESS");
if (bus_address != NULL && *bus_address != '\0')
{
- GTK_NOTE (A11Y, g_message ("Using ATSPI bus address from environment"));
+ GTK_NOTE (A11Y, g_message ("Using ATSPI bus address from environment: %s", bus_address));
g_object_set_data_full (G_OBJECT (display), "-gtk-atspi-bus-address",
g_strdup (bus_address),
g_free);
@@ -337,6 +337,7 @@ get_bus_address (GdkDisplay *display)
{
char *addr = get_bus_address_dbus (display);
+ GTK_NOTE (A11Y, g_message ("Using ATSPI bus address from D-Bus: %s", addr));
g_object_set_data_full (G_OBJECT (display), "-gtk-atspi-bus-address",
addr,
g_free);
@@ -353,7 +354,14 @@ get_bus_address (GdkDisplay *display)
char *addr = get_bus_address_dbus (display);
if (addr == NULL)
- addr = get_bus_address_x11 (display);
+ {
+ addr = get_bus_address_x11 (display);
+ GTK_NOTE (A11Y, g_message ("Using ATSPI bus address from X11: %s", addr));
+ }
+ else
+ {
+ GTK_NOTE (A11Y, g_message ("Using ATSPI bus address from D-Bus: %s", addr));
+ }
g_object_set_data_full (G_OBJECT (display), "-gtk-atspi-bus-address",
addr,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]