From d5f598cd82be69b8c1b8f084a0206db48a7363c2 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun, 2 Oct 2016 17:35:40 -0500
Subject: [PATCH] Tweak probe debug, add newline
---
Marlin/Marlin_main.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index e8c09fcbfc..145a171ca8 100644
--- a/Marlin/Marlin_main.cpp
+++ b/Marlin/Marlin_main.cpp
@@ -2046,8 +2046,7 @@ static void clean_up_after_endstop_or_probe_move() {
#if ENABLED(DEBUG_LEVELING_FEATURE)
float first_probe_z = current_position[Z_AXIS];
- if (DEBUGGING(LEVELING))
- SERIAL_ECHOPAIR("1st Probe Z:", first_probe_z);
+ if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPAIR("1st Probe Z:", first_probe_z);
#endif
// move up by the bump distance
--
GitLab