summaryrefslogtreecommitdiff
path: root/mpris-service.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpris-service.c')
-rw-r--r--mpris-service.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mpris-service.c b/mpris-service.c
index 7f47c95..218c2e3 100644
--- a/mpris-service.c
+++ b/mpris-service.c
@@ -202,7 +202,10 @@ static void on_mpris_name_lost(GDBusConnection *connection, const gchar *name, g
GBusType mpris_bus_type = G_BUS_TYPE_SYSTEM;
if (config.mpris_service_bus_type == DBT_session)
mpris_bus_type = G_BUS_TYPE_SESSION;
- debug(1, "Looking for well-known interface name \"%s\".", interface_name);
+ if (mpris_bus_type == G_BUS_TYPE_SYSTEM)
+ debug(1, "Looking for well-known interface name \"%s\" on the system bus.", interface_name);
+ else
+ debug(1, "Looking for well-known interface name \"%s\" on the session bus.", interface_name);
g_bus_own_name(mpris_bus_type, interface_name, G_BUS_NAME_OWNER_FLAGS_NONE, NULL,
on_mpris_name_acquired, on_mpris_name_lost_again, NULL, NULL);
}