fix(nan): restore SCIA length getter debug log

The MR had turned the active ESP_LOGD("GET SCIA LEN") into a commented-out
ESP_LOGI. Restore the original ESP_LOGD so the log stays live at DEBUG and
no dead commented code is left behind.
This commit is contained in:
Sarvesh Bodakhe
2026-07-01 15:44:14 +05:30
parent d0e2943621
commit 0baa39835e

View File

@@ -1726,7 +1726,7 @@ uint32_t esp_nan_get_scia_len(uint8_t num_pmkids)
return 0;
}
uint32_t len = 3 + 20 * num_pmkids;
// ESP_LOGI(TAG, "SCIA len getter -> %lu (num_pmkids=%d)", len, num_pmkids);
ESP_LOGD(TAG, "GET SCIA LEN: %lu (num_pmkids=%d)", len, num_pmkids);
return len;
}