From d2ad1ad153fb952963d7a2ea730c550609b1f433 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 8 Jul 2016 15:52:31 +0200 Subject: [PATCH] Added more logging --- cura/CuraApplication.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 0d31155590..7a12df320c 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -612,6 +612,7 @@ class CuraApplication(QtApplication): ## Delete all nodes containing mesh data in the scene. @pyqtSlot() def deleteAll(self): + Logger.log("i", "Clearing scene") if not self.getController().getToolsEnabled(): return @@ -635,6 +636,7 @@ class CuraApplication(QtApplication): ## Reset all translation on nodes with mesh data. @pyqtSlot() def resetAllTranslation(self): + Logger.log("i", "Resetting all scene translations") nodes = [] for node in DepthFirstIterator(self.getController().getScene().getRoot()): if type(node) is not SceneNode: @@ -657,6 +659,7 @@ class CuraApplication(QtApplication): ## Reset all transformations on nodes with mesh data. @pyqtSlot() def resetAll(self): + Logger.log("i", "Resetting all scene transformations") nodes = [] for node in DepthFirstIterator(self.getController().getScene().getRoot()): if type(node) is not SceneNode: @@ -680,6 +683,7 @@ class CuraApplication(QtApplication): ## Reload all mesh data on the screen from file. @pyqtSlot() def reloadAll(self): + Logger.log("i", "Reloading all loaded mesh data.") nodes = [] for node in DepthFirstIterator(self.getController().getScene().getRoot()): if type(node) is not SceneNode or not node.getMeshData():