diff --git a/profiles/audio/player.c b/profiles/audio/player.c
index ac7481a..168e677 100644
--- a/profiles/audio/player.c
+++ b/profiles/audio/player.c
if (mp->status == NULL)
return FALSE;
- DBG("%s", mp->status);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &mp->status);
return TRUE;
if (value == NULL)
return FALSE;
- DBG("%s %s", property->name, value);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &value);
return TRUE;
if (mp->name == NULL)
return FALSE;
- DBG("%s", mp->name);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &mp->name);
return TRUE;
if (mp->type == NULL)
return FALSE;
- DBG("%s", mp->type);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &mp->type);
return TRUE;
if (mp->subtype == NULL)
return FALSE;
- DBG("%s", mp->subtype);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &mp->subtype);
return TRUE;
if (mp->folder == NULL)
return FALSE;
- DBG("%s", mp->browsable ? "true" : "false");
-
value = mp->browsable;
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
if (mp->folder == NULL)
return FALSE;
- DBG("%s", mp->searchable ? "true" : "false");
-
value = mp->searchable;
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
{
struct media_item *item = data;
- DBG("%s", item->player->path);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_OBJECT_PATH,
&item->player->path);
if (item->name == NULL)
return FALSE;
- DBG("%s", item->name);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &item->name);
return TRUE;
string = type_to_string(item->type);
- DBG("%s", string);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &string);
return TRUE;
struct media_item *item = data;
dbus_bool_t value;
- DBG("%s", item->playable ? "true" : "false");
-
value = item->playable;
dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
if (string == NULL)
return FALSE;
- DBG("%s", string);
-
dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &string);
return TRUE;