Browse Source

Remove print

This was printing all settings that were being sent to the engine. Could've been useful, actually. Maybe I'll re-add it in the form of a log.

Contributes to issues CURA-1278 and CURA-1588.
Ghostkeeper 8 years ago
parent
commit
6116f592b3
1 changed files with 0 additions and 1 deletions
  1. 0 1
      plugins/CuraEngineBackend/StartSliceJob.py

+ 0 - 1
plugins/CuraEngineBackend/StartSliceJob.py

@@ -131,7 +131,6 @@ class StartSliceJob(Job):
     def _sendGlobalSettings(self):
         message = self._socket.createMessage("cura.proto.SettingList")
         settings = self._getAllSettingValues() #Get all the settings to send.
-        print(settings)
         start_gcode = settings["machine_start_gcode"]
         settings["material_bed_temp_prepend"] = "{material_bed_temperature}" not in start_gcode #Pre-compute material_bed_temp_prepend and material_print_temp_prepend.
         settings["material_print_temp_prepend"] = "{material_print_temperature}" not in start_gcode