summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/dbus-helper.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/common/dbus-helper.c b/common/dbus-helper.c
index ba2db4d9..4d15f418 100644
--- a/common/dbus-helper.c
+++ b/common/dbus-helper.c
@@ -267,9 +267,12 @@ static DBusHandlerResult generic_message(DBusConnection *connection,
current->name))
continue;
- if (dbus_message_has_signature(message, current->signature))
+ if (dbus_message_has_signature(message, current->signature)) {
+ debug("%s: %s.%s()", dbus_message_get_path(message),
+ iface->name, current->name);
return current->message_function(connection,
message, data->user_data);
+ }
}
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;