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:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-15 18:37:37 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2022-07-15 18:37:37 +0300
commit7f27058a6b80bd8e72aa3099843ec1da311207ab (patch)
tree51efa443af51f19c447826df3d88c8aa4e94f243 /cura
parent0c658ccbc502817202839b258812e4281dc43255 (diff)
Output the Conan Info to the logs
Contributes to CURA-9365
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()