| 
     
      
      
      From: Magnus H. <leg...@us...> - 2008-10-06 23:16:56
      
     
   | 
Update of /cvsroot/emacs-jabber/tox In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6315 Modified Files: main.c Log Message: debug messages about D-Bus name acquisition Index: main.c =================================================================== RCS file: /cvsroot/emacs-jabber/tox/main.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- main.c 17 Jan 2008 00:45:21 -0000 1.1 +++ main.c 6 Oct 2008 23:14:14 -0000 1.2 @@ -39,6 +39,7 @@ "/org/freedesktop/DBus", "org.freedesktop.DBus"); + g_debug("About to request D-Bus name...\n"); if (!dbus_g_proxy_call(bus_proxy, "RequestName", &error, G_TYPE_STRING, "net.sourceforge.emacs-jabber.Tox", G_TYPE_UINT, @@ -57,6 +58,7 @@ g_printerr("Couldn't acquire name: RequestName returned %u\n", x); exit(1); } + g_debug("D-Bus name acquired\n"); obj = g_object_new(TOX_TYPE_OBJECT, "dbus-connection", connection, NULL); dbus_g_connection_register_g_object(connection, "/net/sourceforge/emacs_jabber/Tox", G_OBJECT(obj));  |