aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre-Luc Beaudoin <pierre-luc@pierlux.com>2008-11-29 05:43:40 +0800
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>2009-05-08 01:37:01 +0800
commit80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1 (patch)
tree2f8f0e25fcad29f5121537b5911717786e7bce9c
parentc46629ff522f239a5f5459ac6e96ab1ed2015354 (diff)
downloadgsoc2013-empathy-80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1.tar
gsoc2013-empathy-80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1.tar.gz
gsoc2013-empathy-80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1.tar.bz2
gsoc2013-empathy-80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1.tar.lz
gsoc2013-empathy-80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1.tar.xz
gsoc2013-empathy-80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1.tar.zst
gsoc2013-empathy-80c31561d6d867ccbfaa2aa53f4bfdff1dc631c1.zip
Add Location debug domain
-rw-r--r--libempathy/empathy-debug.c1
-rw-r--r--libempathy/empathy-debug.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/libempathy/empathy-debug.c b/libempathy/empathy-debug.c
index ec72bfcfc..bcfa25deb 100644
--- a/libempathy/empathy-debug.c
+++ b/libempathy/empathy-debug.c
@@ -45,6 +45,7 @@ static GDebugKey keys[] = {
{ "Irc", EMPATHY_DEBUG_IRC },
{ "Dispatcher", EMPATHY_DEBUG_DISPATCHER },
{ "Ft", EMPATHY_DEBUG_FT },
+ { "Location", EMPATHY_DEBUG_LOCATION },
{ "Other", EMPATHY_DEBUG_OTHER },
{ 0, }
};
diff --git a/libempathy/empathy-debug.h b/libempathy/empathy-debug.h
index 8b68fd24d..787264dd0 100644
--- a/libempathy/empathy-debug.h
+++ b/libempathy/empathy-debug.h
@@ -39,7 +39,8 @@ typedef enum
EMPATHY_DEBUG_IRC = 1 << 5,
EMPATHY_DEBUG_DISPATCHER = 1 << 6,
EMPATHY_DEBUG_FT = 1 << 7,
- EMPATHY_DEBUG_OTHER = 1 << 8,
+ EMPATHY_DEBUG_LOCATION = 1 << 8,
+ EMPATHY_DEBUG_OTHER = 1 << 9,
} EmpathyDebugFlags;
gboolean empathy_debug_flag_is_set (EmpathyDebugFlags flag);