D-Bus: Write Get/Set property name in debug log
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
5485798f40
commit
88ce7938b0
1 changed files with 4 additions and 1 deletions
|
@ -270,10 +270,13 @@ properties_get_or_set(DBusMessage *message, DBusMessageIter *iter,
|
|||
}
|
||||
|
||||
if (os_strncmp(WPA_DBUS_PROPERTIES_GET, method,
|
||||
WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) == 0)
|
||||
WPAS_DBUS_METHOD_SIGNAL_PROP_MAX) == 0) {
|
||||
wpa_printf(MSG_MSGDUMP, "%s: Get(%s)", __func__, property);
|
||||
return properties_get(message, property_dsc,
|
||||
obj_dsc->user_data);
|
||||
}
|
||||
|
||||
wpa_printf(MSG_MSGDUMP, "%s: Set(%s)", __func__, property);
|
||||
return properties_set(message, property_dsc, obj_dsc->user_data);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue