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:
authorJelle Spijker <j.spijker@ultimaker.com>2022-08-24 21:35:54 +0300
committerGitHub <noreply@github.com>2022-08-24 21:35:54 +0300
commitd843921c7a0b483ba37cf868e811e831e8ef5a22 (patch)
tree71532099ed2e1b213806301c54c33034451f6d81
parent22baf8f34e7abb1f34f38f7192d36ffcc1e7e72c (diff)
parentbb0870008e356295c771d575d1ad568be5310d9b (diff)
Merge pull request #13106 from digitalfrost/240822
CuraSceneController.py : Fix problem with log message and use f-string
-rw-r--r--cura/Scene/CuraSceneController.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Scene/CuraSceneController.py b/cura/Scene/CuraSceneController.py
index 1d604b74b6..54f1cc56f2 100644
--- a/cura/Scene/CuraSceneController.py
+++ b/cura/Scene/CuraSceneController.py
@@ -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()