Don't use caps for log entry of firmware update

Also it might be useful to show what the newly discovered version is.
This commit is contained in:
Ghostkeeper 2019-06-03 09:17:35 +02:00
parent 55c7f546b2
commit 2f92479db2
No known key found for this signature in database
GPG key ID: 86BEF881AE2CF276

View file

@ -104,7 +104,7 @@ class FirmwareUpdateCheckerJob(Job):
# because the new version of Cura will be release before the firmware and we don't want to
# notify the user when no new firmware version is available.
if (checked_version != "") and (checked_version != current_version):
Logger.log("i", "SHOWING FIRMWARE UPDATE MESSAGE")
Logger.log("i", "Showing firmware update message for new version: {version}".format(current_version))
message = FirmwareUpdateCheckerMessage(machine_id, self._machine_name,
self._lookups.getRedirectUserUrl())
message.actionTriggered.connect(self._callback)