Diff between 246f60f6a2c5393159df8e9b0225e46ddb767609 and edfd9b47a81208db47ff5f9b8d23eac7400bdffa
Changed Files
| File | Additions | Deletions | Status |
| src/profile.c | +4 | -0 | modified |
Full Patch
diff --git a/src/profile.c b/src/profile.c
index 97379a9..0d082f8 100644
--- a/src/profile.c
+++ b/src/profile.c
@@ -124,6 +124,8 @@ static struct ext_profile *create_ext(const char *owner, const char *path,
p->name = ext->name;
+ DBG("External profile %s created", ext->name);
+
ext_profiles = g_slist_append(ext_profiles, ext);
return ext;
@@ -133,6 +135,8 @@ static void remove_ext(struct ext_profile *ext)
{
ext_profiles = g_slist_remove(ext_profiles, ext);
+ DBG("External profile %s removed", ext->name);
+
g_free(ext->name);
g_free(ext->owner);
g_free(ext->uuid);