diff --git a/src/profile.c b/src/profile.c
index 5206b5e..667394b 100644
--- a/src/profile.c
+++ b/src/profile.c
ext = l->data;
- DBG("External profile %s probed", ext->name);
+ DBG("\"%s\" probed", ext->name);
return 0;
}
p->name = ext->name;
p->adapter_probe = ext_adapter_probe;
- DBG("External profile %s created", ext->name);
+ DBG("Created \"%s\"", ext->name);
ext_profiles = g_slist_append(ext_profiles, ext);
{
ext_profiles = g_slist_remove(ext_profiles, ext);
- DBG("External profile %s removed", ext->name);
+ DBG("Removed \"%s\"", ext->name);
g_free(ext->name);
g_free(ext->owner);
{
struct ext_profile *ext = user_data;
- DBG("External profile %s exited", ext->name);
+ DBG("\"%s\" exited", ext->name);
remove_ext(ext);
}
DBusConnection *conn = btd_get_dbus_connection();
DBusMessage *msg;
- DBG("Releasing %s", ext->name);
+ DBG("Releasing \"%s\"", ext->name);
msg = dbus_message_new_method_call(ext->owner, ext->path,
"org.bluez.Profile",