From: Mike Brady Date: Wed, 17 Jan 2018 10:06:39 +0000 (+0000) Subject: Add a little extra info to mpris d-bus bus acquisition. X-Git-Tag: 3.2d29~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed38d00213a2166b59ed46ca3cbcb0fd8bd5ec1a;p=thirdparty%2Fshairport-sync.git Add a little extra info to mpris d-bus bus acquisition. --- diff --git a/mpris-service.c b/mpris-service.c index 7f47c95d..218c2e32 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); }