diff --git a/Grbl_Esp32/src/Grbl.cpp b/Grbl_Esp32/src/Grbl.cpp index 19e8acdc..c84a0316 100644 --- a/Grbl_Esp32/src/Grbl.cpp +++ b/Grbl_Esp32/src/Grbl.cpp @@ -142,7 +142,7 @@ void run_once() { protocol_main_loop(); } catch (const AssertionFailed& ex) { // This means something is terribly broken: - error_all("Critical error in run_once: %s", ex.stackTrace.c_str()); + error_all("Critical error in run_once: %s", ex.msg.c_str()); sleep(10000); throw; }