Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2022-03-12 13:26:20 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-03-12 13:26:20 +0300
commit812aa6312e5176f630beb7731a1b32fba4298888 (patch)
treeda3b312a9673830d994ad873e803f60b714da6b9
parenta41de3b73d0bfdf13c332d2425870b7bf6de84da (diff)
Added missing newline in stall warning message
-rw-r--r--src/Platform/Platform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index 0de09f38..67df3ded 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -1234,7 +1234,7 @@ void Platform::Spin() noexcept
}
else if (logOnStallDrivers.Intersects(mask))
{
- MessageF(WarningMessage, "Driver %u stalled at Z height %.2f", nextDriveToPoll, (double)reprap.GetMove().LiveCoordinate(Z_AXIS, reprap.GetCurrentTool()));
+ MessageF(WarningMessage, "Driver %u stalled at Z height %.2f\n", nextDriveToPoll, (double)reprap.GetMove().LiveCoordinate(Z_AXIS, reprap.GetCurrentTool()));
}
}
# endif