summaryrefslogtreecommitdiff
path: root/client/gvfsiconloadable.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 /client/gvfsiconloadable.c
parentffd0031b6cce90332d744a7aad370e5cd694cbba (diff)
downloadgvfs-023f677e887120b5b4ae159108f94dd1d39fd821.tar.gz
gdbus: Remove debug prints
Diffstat (limited to 'client/gvfsiconloadable.c')
-rw-r--r--client/gvfsiconloadable.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/client/gvfsiconloadable.c b/client/gvfsiconloadable.c
index 70ee720b..9030a486 100644
--- a/client/gvfsiconloadable.c
+++ b/client/gvfsiconloadable.c
@@ -96,8 +96,6 @@ g_vfs_icon_load (GLoadableIcon *icon,
GVariant *fd_id_val = NULL;
GError *local_error = NULL;
- g_print ("gvfsiconloadable.c: g_vfs_icon_load\n");
-
proxy = create_proxy_for_icon (vfs_icon, cancellable, error);
if (proxy == NULL)
return NULL;
@@ -111,8 +109,6 @@ g_vfs_icon_load (GLoadableIcon *icon,
cancellable,
&local_error);
- g_print ("gvfsiconloadable.c: g_vfs_icon_load: done, res = %d\n", res);
-
if (! res)
{
if (g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
@@ -182,7 +178,6 @@ async_proxy_new_cb (GObject *source_object,
GError *error = NULL;
proxy = gvfs_dbus_mount_proxy_new_finish (res, &error);
- g_print ("gvfsiconloadable.c: async_proxy_new_cb, proxy = %p\n", proxy);
if (proxy == NULL)
{
_g_simple_async_result_take_error_stripped (data->result, error);
@@ -207,8 +202,6 @@ async_got_connection_cb (GDBusConnection *connection,
{
AsyncPathCall *data = callback_data;
- g_print ("gvfsiconloadable.c: async_got_connection_cb, connection = %p\n", connection);
-
if (connection == NULL)
{
g_dbus_error_strip_remote_error (io_error);
@@ -234,8 +227,6 @@ async_got_mount_info (GMountInfo *mount_info,
GError *error)
{
AsyncPathCall *data = _data;
-
- g_print ("gvfsiconloadable.c: async_got_mount_info, mount_info = %p\n", mount_info);
if (error != NULL)
{
@@ -296,8 +287,6 @@ open_icon_read_cb (GVfsDBusMount *proxy,
guint fd_id;
GFileInputStream *stream;
- g_print ("gvfsiconloadable.c: open_icon_read_cb\n");
-
if (! gvfs_dbus_mount_call_open_icon_for_read_finish (proxy, &fd_id_val, &can_seek, &fd_list, res, &error))
{
_g_simple_async_result_take_error_stripped (data->result, error);
@@ -335,8 +324,6 @@ load_async_cb (GVfsDBusMount *proxy,
{
AsyncPathCall *data = callback_data;
- g_print ("gvfsiconloadable.c: load_async_cb\n");
-
gvfs_dbus_mount_call_open_icon_for_read (proxy,
data->vfs_icon->icon_id,
NULL,