Merge pull request #13106 from digitalfrost/240822

CuraSceneController.py : Fix problem with log message and use f-string
This commit is contained in:
Jelle Spijker 2022-08-24 20:35:54 +02:00 committed by GitHub
commit d843921c7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ class CuraSceneController(QObject):
def setActiveBuildPlate(self, nr):
if nr == self._active_build_plate:
return
Logger.log("d", "Select build plate: %s" % nr)
Logger.debug(f"Selected build plate: {nr}")
self._active_build_plate = nr
Selection.clear()