diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-06-26 01:52:48 +0800 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-06-26 01:52:48 +0800 |
commit | 2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6 (patch) | |
tree | acad03b8b27cc28a68d0c0e3558fd6828277e3b2 /src/empathy.c | |
parent | aa9603b62dd1893eb3fdcd357397ba20c733da43 (diff) | |
parent | 807b62250294666c0dccc27fbab03c1c782dd38b (diff) | |
download | gsoc2013-empathy-2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6.tar gsoc2013-empathy-2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6.tar.gz gsoc2013-empathy-2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6.tar.bz2 gsoc2013-empathy-2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6.tar.lz gsoc2013-empathy-2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6.tar.xz gsoc2013-empathy-2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6.tar.zst gsoc2013-empathy-2f64117b60d24ba5ad3f4bb1c41d4ea3a91f15a6.zip |
Merge branch 'debugger'
Diffstat (limited to 'src/empathy.c')
-rw-r--r-- | src/empathy.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/empathy.c b/src/empathy.c index 70d9b0a68..85124d1e9 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -48,6 +48,7 @@ #include <libempathy/empathy-call-factory.h> #include <libempathy/empathy-chatroom-manager.h> #include <libempathy/empathy-account-manager.h> +#include <libempathy/empathy-debugger.h> #include <libempathy/empathy-dispatcher.h> #include <libempathy/empathy-dispatch-operation.h> #include <libempathy/empathy-log-manager.h> @@ -450,6 +451,31 @@ new_call_handler_cb (EmpathyCallFactory *factory, EmpathyCallHandler *handler, gtk_widget_show (GTK_WIDGET (window)); } +#ifdef ENABLE_DEBUG +static void +default_log_handler (const gchar *log_domain, + GLogLevelFlags log_level, + const gchar *message, + gpointer user_data) +{ + g_log_default_handler (log_domain, log_level, message, NULL); + + /* G_LOG_DOMAIN = "empathy". No need to send empathy messages to the + * debugger as they already have in empathy_debug. */ + if (log_level != G_LOG_LEVEL_DEBUG + || tp_strdiff (log_domain, G_LOG_DOMAIN)) { + EmpathyDebugger *dbg; + GTimeVal now; + + dbg = empathy_debugger_get_singleton (); + g_get_current_time (&now); + + empathy_debugger_add_message (dbg, &now, log_domain, + log_level, message); + } +} +#endif /* ENABLE_DEBUG */ + int main (int argc, char *argv[]) { @@ -514,6 +540,11 @@ main (int argc, char *argv[]) gtk_window_set_default_icon_name ("empathy"); textdomain (GETTEXT_PACKAGE); +#ifdef ENABLE_DEBUG + /* Set up debugger */ + g_log_set_default_handler (default_log_handler, NULL); +#endif + /* Setting up the bacon connection */ startup_timestamp = get_startup_timestamp (); connection = bacon_message_connection_new ("empathy"); |