From 73113c0ce87d125846a32e5c44ac3d04fb9f44bf Mon Sep 17 00:00:00 2001 From: armando Date: Wed, 25 Jun 2025 11:24:28 +0800 Subject: [PATCH] change(psram): change logw to logd --- components/esp_psram/device/esp_psram_impl_ap_quad.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_psram/device/esp_psram_impl_ap_quad.c b/components/esp_psram/device/esp_psram_impl_ap_quad.c index 818f8d3fcf..82de38f55f 100644 --- a/components/esp_psram/device/esp_psram_impl_ap_quad.c +++ b/components/esp_psram/device/esp_psram_impl_ap_quad.c @@ -207,8 +207,8 @@ static esp_err_t s_check_psram_connected(int spi_num) PSRAM_LL_CS_SEL, false); - ESP_EARLY_LOGW(TAG, "exp_data: 0x%08x", exp_data); - ESP_EARLY_LOGW(TAG, "ref_data: 0x%08x", ref_data); + ESP_EARLY_LOGD(TAG, "exp_data: 0x%08x", exp_data); + ESP_EARLY_LOGD(TAG, "ref_data: 0x%08x", ref_data); return (exp_data == ref_data ? ESP_OK : ESP_FAIL); }