Skip to content

Commit

Permalink
🚸 Just "warn" on SD fail
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Dec 20, 2023
1 parent 67d7562 commit f69effd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/sd/cardreader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f69effd

Please sign in to comment.