diff options
author | Cosimo Alfarano <cosimo.alfarano@collabora.co.uk> | 2011-01-10 18:16:28 +0000 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2011-01-21 17:17:57 -0500 |
commit | 8af984a2bc0f3c1c52779b36d7ab797e93d3481d (patch) | |
tree | b6fcfcd87c9281b11f52ff214516083fcb542219 | |
parent | 8124122957c408565e6126222f16f1675418e5f0 (diff) |
Add TPL_DEBUG="testsuite" to debug.c
-rw-r--r-- | telepathy-logger/debug-internal.h | 3 | ||||
-rw-r--r-- | telepathy-logger/debug.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/telepathy-logger/debug-internal.h b/telepathy-logger/debug-internal.h index 172c88be1..9f512195b 100644 --- a/telepathy-logger/debug-internal.h +++ b/telepathy-logger/debug-internal.h @@ -44,7 +44,8 @@ typedef enum TPL_DEBUG_LOG_MANAGER = 1 << 6, TPL_DEBUG_LOG_STORE = 1 << 7, TPL_DEBUG_MAIN = 1 << 8, - TPL_DEBUG_OBSERVER = 1 << 9 + TPL_DEBUG_OBSERVER = 1 << 9, + TPL_DEBUG_TESTSUITE = 1 << 10 } TplDebugFlags; void _tpl_debug_set_flags_from_env (void); diff --git a/telepathy-logger/debug.c b/telepathy-logger/debug.c index c16dd369f..e77381c91 100644 --- a/telepathy-logger/debug.c +++ b/telepathy-logger/debug.c @@ -32,13 +32,14 @@ static GDebugKey keys[] = { { "action-chain", TPL_DEBUG_ACTION_CHAIN }, { "channel", TPL_DEBUG_CHANNEL }, { "conf", TPL_DEBUG_CONF }, - { "entity", TPL_DEBUG_ENTITY }, + { "entity", TPL_DEBUG_ENTITY }, { "dbus-service", TPL_DEBUG_DBUS_SERVICE }, { "log-event", TPL_DEBUG_LOG_EVENT }, { "log-manager", TPL_DEBUG_LOG_MANAGER }, { "log-store", TPL_DEBUG_LOG_STORE }, { "main", TPL_DEBUG_MAIN }, { "observer", TPL_DEBUG_OBSERVER }, + { "testsuite", TPL_DEBUG_TESTSUITE }, { 0, }, }; |