[empathy/gnome-2-34] call-observer: set debug domain to 'voip' and add 2 debug messages
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy/gnome-2-34] call-observer: set debug domain to 'voip' and add 2 debug messages
- Date: Tue, 8 Mar 2011 16:01:57 +0000 (UTC)
commit 0984fed5c7773df78a918e6fd47ca12c9bdec652
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Tue Mar 8 16:29:39 2011 +0100
call-observer: set debug domain to 'voip' and add 2 debug messages
src/empathy-call-observer.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/src/empathy-call-observer.c b/src/empathy-call-observer.c
index 22d0afa..8edb38a 100644
--- a/src/empathy-call-observer.c
+++ b/src/empathy-call-observer.c
@@ -31,7 +31,7 @@
#include "empathy-call-observer.h"
-#define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER
+#define DEBUG_FLAG EMPATHY_DEBUG_VOIP
#include <libempathy/empathy-debug.h>
struct _EmpathyCallObserverPriv {
@@ -59,6 +59,9 @@ on_channel_closed (TpProxy *proxy,
gchar *message,
EmpathyCallObserver *self)
{
+ DEBUG ("channel %s has been invalidated; stop observing it",
+ tp_proxy_get_object_path (proxy));
+
self->priv->channels = g_list_remove (self->priv->channels, proxy);
g_object_unref (proxy);
}
@@ -175,6 +178,8 @@ observe_channels (TpSimpleObserver *observer,
return;
}
+ DEBUG ("Observing channel %s", tp_proxy_get_object_path (channel));
+
tp_g_signal_connect_object (channel, "invalidated",
G_CALLBACK (on_channel_closed), self, 0);
self->priv->channels = g_list_prepend (self->priv->channels,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]