Browse Source

Merge branch 'CURA-7501_fix_warning_preloaded_plugins' of github.com:Ultimaker/Cura

Jaime van Kessel 4 years ago
parent
commit
68bc75e7a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/CuraApplication.py

+ 1 - 1
cura/CuraApplication.py

@@ -756,7 +756,7 @@ class CuraApplication(QtApplication):
             self._plugin_registry.addPluginLocation(os.path.join(QtApplication.getInstallPrefix(), "lib" + suffix, "cura"))
         if not hasattr(sys, "frozen"):
             self._plugin_registry.addPluginLocation(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "plugins"))
-            self._plugin_registry.loadPlugin("ConsoleLogger")
+            self._plugin_registry.preloaded_plugins.append("ConsoleLogger")
 
         self._plugin_registry.loadPlugins()