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:
authorJaime van Kessel <nallath@gmail.com>2020-08-25 17:31:11 +0300
committerJaime van Kessel <nallath@gmail.com>2020-08-25 17:31:11 +0300
commitbf9c41351605b486a1e63af36aaa8541715b771b (patch)
treebf71f4e2b03128020c2e40cadddc7b77e5bac49b /plugins/UM3NetworkPrinting
parent6f3298385f96170c6507fc0abc3e97d844ce4f77 (diff)
Change wording of logline
The log was incorrect. At that point the device isn't connected yet, it's state is connecting!
Diffstat (limited to 'plugins/UM3NetworkPrinting')
-rw-r--r--plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py3
1 files changed, 2 insertions, 1 deletions
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()