From 1e4fe93d64dda0acfd408246bbf8128490fe4f41 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Fri, 15 Jul 2022 17:41:59 +0200 Subject: [PATCH] Output to log if no conan_install_info.json was found Contributes to CURA-9365 --- cura/CuraApplication.py | 2 ++ 1 file changed, 2 insertions(+) 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)