aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2007-08-10 22:09:46 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-08-10 22:09:46 +0800
commitc268d7829d28b150cf969bf90ce053b445385710 (patch)
treef50976dfb7286cbe64cbcd203a1d7ab0685d3be9 /libempathy
parentda9e37d5db7c115a0d3027140f61f006acb1b406 (diff)
downloadgsoc2013-empathy-c268d7829d28b150cf969bf90ce053b445385710.tar
gsoc2013-empathy-c268d7829d28b150cf969bf90ce053b445385710.tar.gz
gsoc2013-empathy-c268d7829d28b150cf969bf90ce053b445385710.tar.bz2
gsoc2013-empathy-c268d7829d28b150cf969bf90ce053b445385710.tar.lz
gsoc2013-empathy-c268d7829d28b150cf969bf90ce053b445385710.tar.xz
gsoc2013-empathy-c268d7829d28b150cf969bf90ce053b445385710.tar.zst
gsoc2013-empathy-c268d7829d28b150cf969bf90ce053b445385710.zip
Change a bit some debug output
svn path=/trunk/; revision=246
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-chandler.c3
-rw-r--r--libempathy/empathy-filter.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/libempathy/empathy-chandler.c b/libempathy/empathy-chandler.c
index 9bef4b1e1..3d65de775 100644
--- a/libempathy/empathy-chandler.c
+++ b/libempathy/empathy-chandler.c
@@ -141,6 +141,9 @@ empathy_chandler_handle_channel (EmpathyChandler *chandler,
handle_type,
handle);
+ empathy_debug (DEBUG_DOMAIN, "New channel to be handled: "
+ "type=%s handle=%d",
+ channel_type, handle);
g_signal_emit (chandler, signals[NEW_CHANNEL], 0, tp_conn, tp_chan);
g_object_unref (tp_chan);
diff --git a/libempathy/empathy-filter.c b/libempathy/empathy-filter.c
index d916b60dd..d45e26178 100644
--- a/libempathy/empathy-filter.c
+++ b/libempathy/empathy-filter.c
@@ -228,7 +228,9 @@ empathy_filter_filter_channel (EmpathyFilter *filter,
g_hash_table_insert (priv->table, tp_chan, GUINT_TO_POINTER (id));
- empathy_debug (DEBUG_DOMAIN, "New channel to be filtred: %d", id);
+ empathy_debug (DEBUG_DOMAIN, "New channel to be filtred: "
+ "type=%s handle=%d id=%d",
+ channel_type, handle, id);
g_signal_emit (filter, signals[NEW_CHANNEL], 0, tp_conn, tp_chan);
g_object_unref (tp_conn);