esp_wifi: Change the verbosity of wpa_supplicant logs.

This commit is contained in:
Hrudaynath Dhabe
2021-12-09 12:41:36 +05:30
parent 233dc30fb1
commit d3b88a13e1
2 changed files with 2 additions and 2 deletions

View File

@ -6115,7 +6115,7 @@ int dpp_bootstrap_gen(struct dpp_global *dpp, const char *cmd)
hexstr2bin(key, privkey, privkey_len) < 0)
goto fail;
}
wpa_hexdump(MSG_ERROR, "private key", privkey, privkey_len);
wpa_hexdump(MSG_DEBUG, "private key", privkey, privkey_len);
pk = dpp_keygen(bi, curve, privkey, privkey_len);
if (!pk)

View File

@ -431,7 +431,7 @@ int pmksa_cache_set_current(struct wpa_sm *sm, const u8 *pmkid,
network_ctx,
bssid);
if (sm->cur_pmksa) {
wpa_hexdump(MSG_ERROR, "RSN: PMKSA cache entry found - PMKID",
wpa_hexdump(MSG_DEBUG, "RSN: PMKSA cache entry found - PMKID",
sm->cur_pmksa->pmkid, PMKID_LEN);
return 0;
}