Added more logging

This commit is contained in:
Jaime van Kessel 2014-11-17 15:28:17 +01:00
parent 0d5621e148
commit d10c88d148

View file

@ -7,10 +7,11 @@ class PrinterApplication(QtApplication):
super(PrinterApplication, self).__init__() super(PrinterApplication, self).__init__()
def run(self): def run(self):
self._plugin_registry.loadPlugins({ "type": "Logger"})
self._plugin_registry.loadPlugins({ "type": "StorageDevice" }) self._plugin_registry.loadPlugins({ "type": "StorageDevice" })
self._plugin_registry.loadPlugins({ "type": "View" }) self._plugin_registry.loadPlugins({ "type": "View" })
self._plugin_registry.loadPlugins({ "type": "MeshHandler" }) self._plugin_registry.loadPlugins({ "type": "MeshHandler" })
self._plugin_registry.loadPlugins({ "type": "Logger"})
self.getController().setActiveView("MeshView") self.getController().setActiveView("MeshView")