[evince/gdbus] [daemon] Add debug output to name watcher
- From: Christian Persch <chpe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evince/gdbus] [daemon] Add debug output to name watcher
- Date: Mon, 10 May 2010 13:00:35 +0000 (UTC)
commit 185c28f35e0c57f60694048d011ec5c7f8f8e1d7
Author: Christian Persch <chpe gnome org>
Date: Mon May 10 14:55:17 2010 +0200
[daemon] Add debug output to name watcher
shell/ev-daemon.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/shell/ev-daemon.c b/shell/ev-daemon.c
index b30238a..c44f8a8 100644
--- a/shell/ev-daemon.c
+++ b/shell/ev-daemon.c
@@ -211,6 +211,7 @@ name_appeared_cb (GDBusConnection *connection,
const gchar *name_owner,
gpointer user_data)
{
+ LOG ("Watch name'%s' appeared with owner '%s'\n", name, name_owner);
}
static void
@@ -220,12 +221,16 @@ name_vanished_cb (GDBusConnection *connection,
{
GList *l;
+ LOG ("Watch name'%s' disappeared\n", name);
+
for (l = ev_daemon_docs; l != NULL; l = l->next) {
EvDoc *doc = (EvDoc *) l->data;
if (strcmp (doc->dbus_name, name) != 0)
continue;
+ LOG ("Watch found URI '%s' for name; removing\n", doc->uri);
+
ev_daemon_docs = g_list_delete_link (ev_daemon_docs, l);
ev_doc_free (doc);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]