* tools/dbus-print-message.c:
Also print the object path when outputting signals or method calls.
+2006-06-14 Ross Burton <ross@openedhand.com>
+
+ * tools/dbus-print-message.c:
+ Also print the object path when outputting signals or method calls.
+
2006-06-13 Thiago Macieira <thiago.macieira@trolltech.com>
* qt/src/Makefile.am: install the qdbus.h header.
{
case DBUS_MESSAGE_TYPE_METHOD_CALL:
case DBUS_MESSAGE_TYPE_SIGNAL:
- printf (" interface=%s; member=%s\n",
+ printf (" path=%s; interface=%s; member=%s\n",
+ dbus_message_get_path (message),
dbus_message_get_interface (message),
dbus_message_get_member (message));
break;