aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-12-03 18:54:13 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-12-03 18:54:13 +0800
commitab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf (patch)
tree5ca5fa4899e6e560d1812b72821b059ebd0e5de8
parentb7ed11068248465334b0158f85ee32b20a814e95 (diff)
downloadgsoc2013-empathy-ab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf.tar
gsoc2013-empathy-ab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf.tar.gz
gsoc2013-empathy-ab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf.tar.bz2
gsoc2013-empathy-ab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf.tar.lz
gsoc2013-empathy-ab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf.tar.xz
gsoc2013-empathy-ab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf.tar.zst
gsoc2013-empathy-ab6cef3f1cbb27c05489b3b8e44f75f6e663b8bf.zip
Call tp_debug_set_flags() to get tp-glib debug messages
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@458 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--libempathy/empathy-debug.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy/empathy-debug.c b/libempathy/empathy-debug.c
index c3e5d74b0..f39573025 100644
--- a/libempathy/empathy-debug.c
+++ b/libempathy/empathy-debug.c
@@ -34,6 +34,8 @@
#include <glib/gprintf.h>
#include <glib/gstdio.h>
+#include <telepathy-glib/debug.h>
+
/* Set EMPATHY_DEBUG to a colon/comma/space separated list of domains, or "all"
* to get all debug output.
*/
@@ -53,6 +55,7 @@ debug_init (void)
gint i;
env = g_getenv ("EMPATHY_DEBUG");
+ tp_debug_set_flags (env);
if (env) {
debug_strv = g_strsplit_set (env, ":, ", 0);