mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 13:03:59 -06:00
CuraSceneController.py : Fix problem with log message and use f-string
- Correct log message (we want to log the "selected" build plate) - Use f-string and debug method for Logger instead of "Old Style" string formatting.
This commit is contained in:
parent
22baf8f34e
commit
bb0870008e
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue