WPS: Making some parsing messages use excessive debug level
This makes it easier to read -dd debug logs in environments that have multiple WPS or P2P devices.
This commit is contained in:
parent
82fb18472e
commit
370cb2a9ce
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@
|
|||
static int wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr,
|
||||
u8 id, u8 len, const u8 *pos)
|
||||
{
|
||||
wpa_printf(MSG_MSGDUMP, "WPS: WFA subelement id=%u len=%u",
|
||||
wpa_printf(MSG_EXCESSIVE, "WPS: WFA subelement id=%u len=%u",
|
||||
id, len);
|
||||
switch (id) {
|
||||
case WFA_ELEM_VERSION2:
|
||||
|
@ -547,7 +547,7 @@ int wps_parse_msg(const struct wpabuf *msg, struct wps_parse_attr *attr)
|
|||
pos += 2;
|
||||
len = WPA_GET_BE16(pos);
|
||||
pos += 2;
|
||||
wpa_printf(MSG_MSGDUMP, "WPS: attr type=0x%x len=%u",
|
||||
wpa_printf(MSG_EXCESSIVE, "WPS: attr type=0x%x len=%u",
|
||||
type, len);
|
||||
if (len > end - pos) {
|
||||
wpa_printf(MSG_DEBUG, "WPS: Attribute overflow");
|
||||
|
|
Loading…
Reference in a new issue