From 3905bcecd35f672080bfdac3340a6c76271e718d Mon Sep 17 00:00:00 2001 From: "Armando (Dou Yiwen)" Date: Mon, 11 May 2026 15:12:53 +0800 Subject: [PATCH] change(psram): changed cs io log to debug level Signed-off-by: Armando (Dou Yiwen) --- components/esp_psram/device/esp_psram_impl_ap_hex.c | 2 +- components/esp_psram/device/esp_psram_impl_ap_oct.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_psram/device/esp_psram_impl_ap_hex.c b/components/esp_psram/device/esp_psram_impl_ap_hex.c index 8219f1c528f..b544b325321 100644 --- a/components/esp_psram/device/esp_psram_impl_ap_hex.c +++ b/components/esp_psram/device/esp_psram_impl_ap_hex.c @@ -488,7 +488,7 @@ esp_err_t esp_psram_impl_enable(void) uint8_t esp_psram_impl_get_cs_io(void) { - ESP_EARLY_LOGI(TAG, "psram CS IO is dedicated"); + ESP_EARLY_LOGD(TAG, "psram CS IO is dedicated"); return -1; } diff --git a/components/esp_psram/device/esp_psram_impl_ap_oct.c b/components/esp_psram/device/esp_psram_impl_ap_oct.c index 7ff19283cfb..3f64f1edd5b 100644 --- a/components/esp_psram/device/esp_psram_impl_ap_oct.c +++ b/components/esp_psram/device/esp_psram_impl_ap_oct.c @@ -483,7 +483,7 @@ esp_err_t esp_psram_impl_enable(void) uint8_t esp_psram_impl_get_cs_io(void) { - ESP_EARLY_LOGI(TAG, "psram CS IO is dedicated"); + ESP_EARLY_LOGD(TAG, "psram CS IO is dedicated"); return -1; }