Skip to content

Commit 4c033c3

Browse files
committed
🧑‍💻 Tweak homing debug
1 parent f9db5ab commit 4c033c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/module/motion.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2444,9 +2444,9 @@ void set_axis_is_at_home(const AxisEnum axis) {
24442444
if (axis == Z_AXIS) {
24452445
#if HOMING_Z_WITH_PROBE
24462446
current_position.z -= probe.offset.z;
2447-
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("*** Z HOMED WITH PROBE (Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN) ***\n> probe.offset.z = ", probe.offset.z);
2447+
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("*** Z homed with PROBE" TERN_(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN, " (Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)") " ***\n> (M851 Z", probe.offset.z, ")");
24482448
#else
2449-
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("*** Z HOMED TO ENDSTOP ***");
2449+
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("*** Z homed to ENDSTOP ***");
24502450
#endif
24512451
}
24522452
#endif

0 commit comments

Comments
 (0)