diff --git a/klippy/extras/probe.py b/klippy/extras/probe.py
index 939e277ec..ca5916baf 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):