aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-debug.c
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-06-18 07:54:55 +0800
committerJonny Lamb <jonny.lamb@collabora.co.uk>2009-06-18 08:05:56 +0800
commit6914121ce5169769207613166e14c077259c863b (patch)
tree0ea43898ab34d033e0cd8f3f7f3bd7eb851f8a19 /libempathy/empathy-debug.c
parenta7785586abe2bf770185fdf8be1855552c476600 (diff)
downloadgsoc2013-empathy-6914121ce5169769207613166e14c077259c863b.tar
gsoc2013-empathy-6914121ce5169769207613166e14c077259c863b.tar.gz
gsoc2013-empathy-6914121ce5169769207613166e14c077259c863b.tar.bz2
gsoc2013-empathy-6914121ce5169769207613166e14c077259c863b.tar.lz
gsoc2013-empathy-6914121ce5169769207613166e14c077259c863b.tar.xz
gsoc2013-empathy-6914121ce5169769207613166e14c077259c863b.tar.zst
gsoc2013-empathy-6914121ce5169769207613166e14c077259c863b.zip
Implement o.fd.Tp.Debug. (Fixes #580631)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'libempathy/empathy-debug.c')
-rw-r--r--libempathy/empathy-debug.c74
1 files changed, 66 insertions, 8 deletions
diff --git a/libempathy/empathy-debug.c b/libempathy/empathy-debug.c
index 47482d5fc..99111deec 100644
--- a/libempathy/empathy-debug.c
+++ b/libempathy/empathy-debug.c
@@ -33,6 +33,8 @@
#include "empathy-debug.h"
+#include "empathy-debugger.h"
+
#ifdef ENABLE_DEBUG
static EmpathyDebugFlags flags = 0;
@@ -75,18 +77,74 @@ empathy_debug_flag_is_set (EmpathyDebugFlags flag)
return (flag & flags) != 0;
}
+GHashTable *flag_to_keys = NULL;
+
+static const gchar *
+debug_flag_to_key (EmpathyDebugFlags flag)
+{
+ if (flag_to_keys == NULL)
+ {
+ guint i;
+
+ flag_to_keys = g_hash_table_new_full (g_direct_hash, g_direct_equal,
+ NULL, g_free);
+
+ for (i = 0; keys[i].value; i++)
+ {
+ GDebugKey key = (GDebugKey) keys[i];
+ g_hash_table_insert (flag_to_keys, GUINT_TO_POINTER (key.value),
+ g_strdup (key.key));
+ }
+ }
+
+ return g_hash_table_lookup (flag_to_keys, GUINT_TO_POINTER (flag));
+}
+
+void
+empathy_debug_free (void)
+{
+ if (flag_to_keys == NULL)
+ return;
+
+ g_hash_table_destroy (flag_to_keys);
+ flag_to_keys = NULL;
+}
+
+static void
+log_to_debugger (EmpathyDebugFlags flag,
+ const gchar *message)
+{
+ EmpathyDebugger *dbg = empathy_debugger_get_singleton ();
+ gchar *domain;
+ GTimeVal now;
+
+ g_get_current_time (&now);
+
+ domain = g_strdup_printf ("%s/%s", G_LOG_DOMAIN, debug_flag_to_key (flag));
+
+ empathy_debugger_add_message (dbg, &now, domain, G_LOG_LEVEL_DEBUG, message);
+
+ g_free (domain);
+}
+
void
empathy_debug (EmpathyDebugFlags flag,
- const gchar *format,
- ...)
+ const gchar *format,
+ ...)
{
+ gchar *message;
+ va_list args;
+
+ va_start (args, format);
+ message = g_strdup_vprintf (format, args);
+ va_end (args);
+
+ log_to_debugger (flag, message);
+
if (flag & flags)
- {
- va_list args;
- va_start (args, format);
- g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format, args);
- va_end (args);
- }
+ g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "%s", message);
+
+ g_free (message);
}
#else