Skip to content

Commit

Permalink
Remove debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederic98 committed Sep 24, 2024
1 parent 97f35d8 commit 1bce215
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions cura/BuildVolume.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,15 +803,12 @@ def _updateMachineSizeProperties(self) -> None:
self._shape = self._global_container_stack.getProperty("machine_shape", "value")

def _updateUsedExtruders(self):
Logger.info("Updating used extruders")
global_container_stack = self._application.getGlobalContainerStack()
if not global_container_stack:
return
used_extruders = ExtruderManager.getInstance().getUsedExtruderStacks()
for extruder in global_container_stack.extruderList:
used = extruder in used_extruders
Logger.info(f"- {extruder.getId()}: {used}")
changed = (used == extruder.getProperty("extruder_used", "value"))
extruder.definitionChanges.setProperty("extruder_used", "value", used)

def _nodeActiveExtruderChanged(self):
Expand Down

0 comments on commit 1bce215

Please sign in to comment.