From: Guillaume Desmottes Date: Tue, 22 Jun 2010 11:50:50 +0000 (+0200) Subject: debug-window: add the logger (#622381) X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=603a22855ea710b276892654b86a529167f8d32b debug-window: add the logger (#622381) --- diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c index edb08066..d1455368 100644 --- a/src/empathy-debug-window.c +++ b/src/empathy-debug-window.c @@ -846,6 +846,13 @@ debug_window_fill_cm_chooser (EmpathyDebugWindow *debug_window) COL_CM_UNIQUE_NAME, "org.freedesktop.Telepathy.MissionControl5", -1); + /* add the logger */ + gtk_list_store_append (priv->cms, &iter); + gtk_list_store_set (priv->cms, &iter, + COL_CM_NAME, "logger", + COL_CM_UNIQUE_NAME, "org.freedesktop.Telepathy.Client.Logger", + -1); + priv->name_owner_changed_signal = tp_cli_dbus_daemon_connect_to_name_owner_changed (priv->dbus, debug_window_name_owner_changed_cb, debug_window, NULL, NULL, NULL);