remove !! from Error message HALT will send it
authorJim Morris <morris@wolfman.com>
Tue, 25 Aug 2015 02:59:28 +0000 (19:59 -0700)
committerJim Morris <morris@wolfman.com>
Tue, 25 Aug 2015 02:59:28 +0000 (19:59 -0700)
src/modules/tools/temperaturecontrol/TemperatureControl.cpp

index f4c121f..43d583d 100644 (file)
@@ -115,7 +115,7 @@ void TemperatureControl::on_main_loop(void *argument)
 {
     if (this->temp_violated) {
         this->temp_violated = false;
-        THEKERNEL->streams->printf("!! Error: MINTEMP or MAXTEMP triggered. Check your temperature sensors!\n");
+        THEKERNEL->streams->printf("Error: MINTEMP or MAXTEMP triggered. Check your temperature sensors!\n");
         THEKERNEL->streams->printf("HALT asserted - reset or M999 required\n");
         THEKERNEL->call_event(ON_HALT, nullptr);
     }