From f948b7c4fca292c7c756f8630ced4534decafee1 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 20 Jul 2020 16:03:06 +0200 Subject: [PATCH] Add bit more logging around MachineNode loading --- cura/Machines/ContainerTree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/Machines/ContainerTree.py b/cura/Machines/ContainerTree.py index 7f1e7900d0..904f66e96e 100644 --- a/cura/Machines/ContainerTree.py +++ b/cura/Machines/ContainerTree.py @@ -171,7 +171,7 @@ class ContainerTree: The ``JobQueue`` will schedule this on a different thread. """ - + Logger.log("d", "Started background loading of MachineNodes") for stack in self.container_stacks: # Load all currently-added containers. if not isinstance(stack, GlobalStack): continue @@ -182,3 +182,4 @@ class ContainerTree: definition_id = stack.definition.getId() if not self.tree_root.machines.is_loaded(definition_id): _ = self.tree_root.machines[definition_id] + Logger.log("d", "All MachineNode loading completed") \ No newline at end of file