sdcard.cpp: discard no sd error message

This commit is contained in:
cyberman54 2022-11-27 12:25:05 +01:00
parent 6180ef9b0a
commit b6f4399138

View File

@ -153,7 +153,7 @@ bool sdcard_init(bool create) {
if (ret == ESP_FAIL) { if (ret == ESP_FAIL) {
ESP_LOGE(TAG, "failed to mount filesystem"); ESP_LOGE(TAG, "failed to mount filesystem");
} else { } else {
ESP_LOGE(TAG, "SD-card not found (%d)", ret); ESP_LOGI(TAG, "No SD-card found (%d)", ret);
} }
return false; return false;
} }