From 476321be5c78251b81cc7045a930f12b9b75d493 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 25 Oct 2021 15:38:54 +0200 Subject: [PATCH] Remove log entry for when Marketplace QML fails to load This is already logged with a warning by the QML engine. Contributes to issue CURA-8556. --- plugins/Marketplace/Marketplace.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/Marketplace/Marketplace.py b/plugins/Marketplace/Marketplace.py index 8c9f8097c8..b3f573f792 100644 --- a/plugins/Marketplace/Marketplace.py +++ b/plugins/Marketplace/Marketplace.py @@ -47,7 +47,6 @@ class Marketplace(Extension): path = os.path.join(plugin_path, "resources", "qml", "Marketplace.qml") self._window = CuraApplication.getInstance().createQmlComponent(path, {}) if self._window is None: # Still None? Failed to load the QML then. - Logger.error(f"Failed to load QML for Marketplace window.") return self._window.show() self._window.requestActivate() # Bring window into focus, if it was already open in the background.