diff options
author | Ted Gould <ted@canonical.com> | 2009-11-23 15:59:30 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-23 15:59:30 -0600 |
commit | 009e468befbd97cf69263b47a01bc66d9a119d66 (patch) | |
tree | aff0f51a8ce77c720e15dc8d2c87e72c8ab1d627 /src | |
parent | 62f0373e2b8c8bb54fd4c72182d40622fad1215b (diff) | |
download | libayatana-appindicator-009e468befbd97cf69263b47a01bc66d9a119d66.tar.gz libayatana-appindicator-009e468befbd97cf69263b47a01bc66d9a119d66.tar.bz2 libayatana-appindicator-009e468befbd97cf69263b47a01bc66d9a119d66.zip |
Adding a debug message on getting an application.
Diffstat (limited to 'src')
-rw-r--r-- | src/custom-service-appstore.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/custom-service-appstore.c b/src/custom-service-appstore.c index 6cb2dd9..fdb227a 100644 --- a/src/custom-service-appstore.c +++ b/src/custom-service-appstore.c @@ -174,6 +174,8 @@ get_all_properties_cb (DBusGProxy * proxy, GHashTable * properties, GError * err void custom_service_appstore_application_add (CustomServiceAppstore * appstore, const gchar * dbus_name, const gchar * dbus_object) { + g_debug("Adding new application: %s:%s", dbus_name, dbus_object); + /* Make sure we got a sensible request */ g_return_if_fail(IS_CUSTOM_SERVICE_APPSTORE(appstore)); g_return_if_fail(dbus_name != NULL && dbus_name[0] != '\0'); |