Change wording of logline

The log was incorrect. At that point the device isn't connected yet,
it's state is connecting!
This commit is contained in:
Jaime van Kessel 2020-08-25 16:31:11 +02:00
parent 6f3298385f
commit bf9c413516
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -109,8 +109,9 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice):
if self.isConnected(): if self.isConnected():
return return
Logger.log("i", "Attempting to connect to cluster %s", self.key)
super().connect() super().connect()
Logger.log("i", "Connected to cluster %s", self.key)
CuraApplication.getInstance().getBackend().backendStateChange.connect(self._onBackendStateChange) CuraApplication.getInstance().getBackend().backendStateChange.connect(self._onBackendStateChange)
self._update() self._update()