From bf9c41351605b486a1e63af36aaa8541715b771b Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 25 Aug 2020 16:31:11 +0200 Subject: [PATCH] Change wording of logline The log was incorrect. At that point the device isn't connected yet, it's state is connecting! --- plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 3b73e54b25..63c11ba484 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -109,8 +109,9 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): if self.isConnected(): return + Logger.log("i", "Attempting to connect to cluster %s", self.key) super().connect() - Logger.log("i", "Connected to cluster %s", self.key) + CuraApplication.getInstance().getBackend().backendStateChange.connect(self._onBackendStateChange) self._update()