summaryrefslogtreecommitdiff
path: root/daemon/gvfsjobenumerate.c
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2012-07-31 15:52:54 +0200
committerTomas Bzatek <tbzatek@redhat.com>2012-07-31 15:52:54 +0200
commit023f677e887120b5b4ae159108f94dd1d39fd821 (patch)
tree18c901e60485433735baf34c2ea7073716db2ed2 /daemon/gvfsjobenumerate.c
parentffd0031b6cce90332d744a7aad370e5cd694cbba (diff)
downloadgvfs-023f677e887120b5b4ae159108f94dd1d39fd821.tar.gz
gdbus: Remove debug prints
Diffstat (limited to 'daemon/gvfsjobenumerate.c')
-rw-r--r--daemon/gvfsjobenumerate.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/daemon/gvfsjobenumerate.c b/daemon/gvfsjobenumerate.c
index 1dd25fac..89890761 100644
--- a/daemon/gvfsjobenumerate.c
+++ b/daemon/gvfsjobenumerate.c
@@ -90,8 +90,6 @@ g_vfs_job_enumerate_new_handle (GVfsDBusMount *object,
{
GVfsJobEnumerate *job;
- g_print ("called Enumerate()\n");
-
if (g_vfs_backend_invocation_first_handler (object, invocation, backend))
return TRUE;
@@ -123,8 +121,6 @@ create_enumerator_proxy (GVfsJobEnumerate *job)
connection = g_dbus_method_invocation_get_connection (G_VFS_JOB_DBUS (job)->invocation);
sender = g_dbus_method_invocation_get_sender (G_VFS_JOB_DBUS (job)->invocation);
- g_print ("create_enumerator_proxy: sender = '%s', object_path = '%s'\n", sender, job->object_path);
-
return gvfs_dbus_enumerator_proxy_new_sync (connection,
G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS,
sender,
@@ -228,8 +224,6 @@ send_done_cb (GVfsDBusEnumerator *proxy,
{
GError *error = NULL;
- g_print ("send_done_cb\n");
-
gvfs_dbus_enumerator_call_done_finish (proxy, res, &error);
if (error != NULL)
{
@@ -245,8 +239,6 @@ g_vfs_job_enumerate_done (GVfsJobEnumerate *job)
g_assert (!G_VFS_JOB (job)->failed);
- g_print ("g_vfs_job_enumerate_done: sending...\n");
-
if (job->building_infos != NULL)
send_infos (job);
@@ -259,8 +251,6 @@ g_vfs_job_enumerate_done (GVfsJobEnumerate *job)
NULL);
g_object_unref (proxy);
- g_print ("g_vfs_job_enumerate_done: done.\n");
-
g_vfs_job_emit_finished (G_VFS_JOB (job));
}