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
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-15 18:41:59 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2022-07-15 18:41:59 +0300
commit1e4fe93d64dda0acfd408246bbf8128490fe4f41 (patch)
treeace83c7bab0ff695f40daf4e4d89b11bc8fb0113
parent7f27058a6b80bd8e72aa3099843ec1da311207ab (diff)
Output to log if no conan_install_info.json was found
Contributes to CURA-9365
-rwxr-xr-xcura/CuraApplication.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index 5ec1515a5f..eeaead4f71 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -823,6 +823,8 @@ class CuraApplication(QtApplication):
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"]))
+ else:
+ Logger.warning("Could not find conan_install_info.json")
Logger.log("i", "Initializing machine error checker")
self._machine_error_checker = MachineErrorChecker(self)