Browse Source

Tweak debug messages

Scott Lahteine 5 years ago
parent
commit
13d725d24d
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/src/gcode/calibrate/G28.cpp

+ 3
- 3
Marlin/src/gcode/calibrate/G28.cpp View File

@@ -124,7 +124,7 @@
124 124
       return;
125 125
     }
126 126
 
127
-    if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("Z_SAFE_HOMING >>>");
127
+    if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("home_z_safely >>>");
128 128
 
129 129
     sync_plan_position();
130 130
 
@@ -142,7 +142,7 @@
142 142
 
143 143
     if (position_is_reachable(destination[X_AXIS], destination[Y_AXIS])) {
144 144
 
145
-      if (DEBUGGING(LEVELING)) DEBUG_POS("Z_SAFE_HOMING", destination);
145
+      if (DEBUGGING(LEVELING)) DEBUG_POS("home_z_safely", destination);
146 146
 
147 147
       // This causes the carriage on Dual X to unpark
148 148
       #if ENABLED(DUAL_X_CARRIAGE)
@@ -161,7 +161,7 @@
161 161
       SERIAL_ECHO_MSG(MSG_ZPROBE_OUT);
162 162
     }
163 163
 
164
-    if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< Z_SAFE_HOMING");
164
+    if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< home_z_safely");
165 165
   }
166 166
 
167 167
 #endif // Z_SAFE_HOMING

Loading…
Cancel
Save