diff --git a/Marlin/src/feature/pause.cpp b/Marlin/src/feature/pause.cpp index fb26bbdedb..7857bcff35 100644 --- a/Marlin/src/feature/pause.cpp +++ b/Marlin/src/feature/pause.cpp @@ -93,7 +93,7 @@ static bool ensure_safe_temperature(const AdvancedPauseMode mode=ADVANCED_PAUSE_ #if ENABLED(PREVENT_COLD_EXTRUSION) if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder)) { - SERIAL_ERROR_MSG(MSG_ERR_HOTEND_TOO_COLD); + SERIAL_ECHO_MSG(MSG_ERR_HOTEND_TOO_COLD); return false; } #endif @@ -334,7 +334,7 @@ bool pause_print(const float &retract, const point_t &park_point, const float &u #endif if (!DEBUGGING(DRYRUN) && unload_length && thermalManager.targetTooColdToExtrude(active_extruder)) { - SERIAL_ERROR_MSG(MSG_ERR_HOTEND_TOO_COLD); + SERIAL_ECHO_MSG(MSG_ERR_HOTEND_TOO_COLD); #if HAS_LCD_MENU if (show_lcd) { // Show status screen diff --git a/Marlin/src/module/tool_change.cpp b/Marlin/src/module/tool_change.cpp index 65fcabd5a7..0d79f7c9e4 100644 --- a/Marlin/src/module/tool_change.cpp +++ b/Marlin/src/module/tool_change.cpp @@ -553,7 +553,7 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n #endif if (should_swap) { if (too_cold) { - SERIAL_ERROR_MSG(MSG_ERR_HOTEND_TOO_COLD); + SERIAL_ECHO_MSG(MSG_ERR_HOTEND_TOO_COLD); #if ENABLED(SINGLENOZZLE) active_extruder = tmp_extruder; return;