summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartyn Russell <martyn@lanedo.com>2010-01-14 12:11:52 +0000
committerPhilip Van Hoof <philip@codeminded.be>2010-01-14 13:30:43 +0100
commit428927ee74e84fa6b7ac961929d1f391345bc523 (patch)
tree76eebff1e4fc3f99209fdf2190ed0965f0339377
parent225e3e660b754f9963154a386308670f4630e1f7 (diff)
downloadtracker-428927ee74e84fa6b7ac961929d1f391345bc523.tar.gz
libtracker-client: Removed debugging
-rw-r--r--src/libtracker-client/tracker.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libtracker-client/tracker.c b/src/libtracker-client/tracker.c
index 9390af411..ebe8164d4 100644
--- a/src/libtracker-client/tracker.c
+++ b/src/libtracker-client/tracker.c
@@ -325,30 +325,23 @@ client_constructed (GObject *object)
return;
}
- g_debug ("Got connection to service %p", connection);
-
private->proxy_statistics =
dbus_g_proxy_new_for_name (connection,
TRACKER_DBUS_SERVICE,
TRACKER_DBUS_OBJECT "/Statistics",
TRACKER_DBUS_INTERFACE_STATISTICS);
- g_debug ("Got proxy for stats %p", private->proxy_statistics);
-
private->proxy_resources =
dbus_g_proxy_new_for_name (connection,
TRACKER_DBUS_SERVICE,
TRACKER_DBUS_OBJECT "/Resources",
TRACKER_DBUS_INTERFACE_RESOURCES);
- g_debug ("Got proxy for resources %p", private->proxy_resources);
-
/* NOTE: We don't need to set this for the stats proxy, the
* query takes no arguments and is generally really fast.
*/
dbus_g_proxy_set_default_timeout (private->proxy_resources,
private->timeout);
- g_debug ("Set timeout to %d", private->timeout);
private->is_constructed = TRUE;
}