Skip to content

Commit

Permalink
Reduce log verbosity for "Using SD card handle"
Browse files Browse the repository at this point in the history
  • Loading branch information
nebkat authored and BrianPugh committed Jun 19, 2024
1 parent 002ae3e commit e15d3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/esp_littlefs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ static esp_err_t esp_littlefs_init(const esp_vfs_littlefs_conf_t* conf)
partition = conf->partition;
#ifdef CONFIG_LITTLEFS_SDMMC_SUPPORT
} else if (conf->sdcard) {
ESP_LOGI(ESP_LITTLEFS_TAG, "Using SD card handle %p for LittleFS mount", conf->sdcard);
ESP_LOGV(ESP_LITTLEFS_TAG, "Using SD card handle %p for LittleFS mount", conf->sdcard);
err = sdmmc_get_status(conf->sdcard);
if (err != ESP_OK) {
ESP_LOGE(ESP_LITTLEFS_TAG, "Failed when checking SD card status: 0x%x", err);
Expand Down

0 comments on commit e15d3bd

Please sign in to comment.