Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
Diffstat (limited to 'cura')
-rwxr-xr-xcura/CuraApplication.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index aac1338444..5ec1515a5f 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -820,6 +820,10 @@ class CuraApplication(QtApplication):
def run(self):
super().run()
+ if len(ApplicationMetadata.DEPENDENCY_INFO) > 0:
+ Logger.debug("Using Conan managed dependencies: " + ", ".join(
+ [dep["recipe"]["id"] for dep in ApplicationMetadata.DEPENDENCY_INFO["installed"] if dep["recipe"]["version"] != "latest"]))
+
Logger.log("i", "Initializing machine error checker")
self._machine_error_checker = MachineErrorChecker(self)
self._machine_error_checker.initialize()