1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-27 13:56:24 +00:00

🚸 Just "warn" on SD fail

This commit is contained in:
Scott Lahteine 2023-12-19 20:57:26 -06:00
parent 67d7562609
commit f69effd2eb

View File

@ -487,9 +487,9 @@ void CardReader::mount() {
#endif
) SERIAL_ECHO_MSG(STR_SD_INIT_FAIL);
else if (!volume.init(driver))
SERIAL_ERROR_MSG(STR_SD_VOL_INIT_FAIL);
SERIAL_WARN_MSG(STR_SD_VOL_INIT_FAIL);
else if (!root.openRoot(&volume))
SERIAL_ERROR_MSG(STR_SD_OPENROOT_FAIL);
SERIAL_WARN_MSG(STR_SD_OPENROOT_FAIL);
else {
flag.mounted = true;
SERIAL_ECHO_MSG(STR_SD_CARD_OK);