aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/probe.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras/probe.py')
-rw-r--r--klippy/extras/probe.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/klippy/extras/probe.py b/klippy/extras/probe.py
index 939e277e..ca5916ba 100644
--- a/klippy/extras/probe.py
+++ b/klippy/extras/probe.py
@@ -76,10 +76,9 @@ class PrinterProbe:
if "Timeout during endstop homing" in reason:
reason += HINT_TIMEOUT
raise self.gcode.error(reason)
- kin = toolhead.get_kinematics()
- pos = kin.get_position()
- self.gcode.respond_info(
- "probe z: %.3f" % (pos[2]))
+ pos = toolhead.get_position()
+ self.gcode.respond_info("probe at %.3f,%.3f is z=%.6f" % (
+ pos[0], pos[1], pos[2]))
self.gcode.reset_last_position()
cmd_QUERY_PROBE_help = "Return the status of the z-probe"
def cmd_QUERY_PROBE(self, params):