From d10c88d1487940ecea3475723ddd4b03a42e8945 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 17 Nov 2014 15:28:17 +0100 Subject: [PATCH] Added more logging --- PrinterApplication.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PrinterApplication.py b/PrinterApplication.py index 8b043affbe..17e73315a3 100644 --- a/PrinterApplication.py +++ b/PrinterApplication.py @@ -7,10 +7,11 @@ class PrinterApplication(QtApplication): super(PrinterApplication, self).__init__() def run(self): + self._plugin_registry.loadPlugins({ "type": "Logger"}) self._plugin_registry.loadPlugins({ "type": "StorageDevice" }) self._plugin_registry.loadPlugins({ "type": "View" }) self._plugin_registry.loadPlugins({ "type": "MeshHandler" }) - self._plugin_registry.loadPlugins({ "type": "Logger"}) + self.getController().setActiveView("MeshView")