]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
2006-06-14 Ross Burton <ross@openedhand.com>
authorRoss Burton <ross@openedhand.com>
Wed, 14 Jun 2006 11:26:41 +0000 (11:26 +0000)
committerRoss Burton <ross@openedhand.com>
Wed, 14 Jun 2006 11:26:41 +0000 (11:26 +0000)
* tools/dbus-print-message.c:
Also print the object path when outputting signals or method calls.

ChangeLog
tools/dbus-print-message.c

index 132b55c11c2aed529bfb05c1c1bc855632e1b980..f9bf1f10f4e1dd4b7f89e76af6a1f6127bad5ae7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
index debe26a9d0bef0e63db677e2e043109ab61b5090..bac538ece4ce95391b06ad9a0217222b7e1620ff 100644 (file)
@@ -263,7 +263,8 @@ print_message (DBusMessage *message, dbus_bool_t literal)
        {
        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;