summaryrefslogtreecommitdiff
path: root/telepathy-glib/file-transfer-channel.c
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-10-31 16:45:29 +0000
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-11-11 10:50:51 +0000
commitb6e8fd2962ea4d798f466ad64999f7e2195380eb (patch)
treee04c619671487abe30ecf4135fd6cef37f20af42 /telepathy-glib/file-transfer-channel.c
parent2d260da28c058bd019e78e0e2287155bf6109afb (diff)
downloadtelepathy-glib-b6e8fd2962ea4d798f466ad64999f7e2195380eb.tar.gz
ft-channel: clean up some debug messages
DEBUG uses macros to prepend the function name, so it's not necessary to do it yourself. I'm unconvinced all these are necessary too, but oh well. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'telepathy-glib/file-transfer-channel.c')
-rw-r--r--telepathy-glib/file-transfer-channel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/telepathy-glib/file-transfer-channel.c b/telepathy-glib/file-transfer-channel.c
index be15da688..ca430a2b1 100644
--- a/telepathy-glib/file-transfer-channel.c
+++ b/telepathy-glib/file-transfer-channel.c
@@ -335,7 +335,7 @@ accept_file_cb (TpChannel *proxy,
GSocketAddress *remote_address;
GError *error = NULL;
- DEBUG ("Entering accept_file_cb");
+ DEBUG ("enter");
if (error != NULL)
{
@@ -407,7 +407,7 @@ provide_file_cb (TpChannel *proxy,
GSocketAddress *remote_address;
GError *error = NULL;
- DEBUG ("Entering provide_file_cb");
+ DEBUG ("enter");
if (error != NULL)
{
@@ -1131,7 +1131,7 @@ tp_file_transfer_channel_accept_file_finish (TpFileTransferChannel *self,
GAsyncResult *result,
GError **error)
{
- DEBUG ("Entering tp_file_transfer_channel_accept_file_finish");
+ DEBUG ("enter");
_tp_implement_finish_void (self, tp_file_transfer_channel_accept_file_async)
}
@@ -1158,7 +1158,7 @@ tp_file_transfer_channel_offer_file_async (TpFileTransferChannel *self,
GHashTable *supported_sockets;
GError *error = NULL;
- DEBUG ("Entering tp_file_transfer_channel_offer_file_async");
+ DEBUG ("enter");
g_return_if_fail (TP_IS_FILE_TRANSFER_CHANNEL (self));
g_return_if_fail (G_IS_FILE (file));
@@ -1279,7 +1279,7 @@ tp_file_transfer_channel_offer_file_finish (TpFileTransferChannel *self,
GAsyncResult *result,
GError **error)
{
- DEBUG ("Entering tp_file_transfer_channel_offer_file_finish");
+ DEBUG ("enter");
_tp_implement_finish_void (self, tp_file_transfer_channel_offer_file_async)
}