From 68ca6d10e707e9523aa93681136db1d30231bcdd Mon Sep 17 00:00:00 2001 From: Ian OHara Date: Mon, 20 Jan 2025 15:59:20 -0800 Subject: [PATCH] fix(MultiPointWorker): Fix log call with missing format --- software/control/core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/control/core/core.py b/software/control/core/core.py index 1a32a38f..3a793dae 100644 --- a/software/control/core/core.py +++ b/software/control/core/core.py @@ -1459,7 +1459,7 @@ def update_stats(self, new_stats): def update_use_piezo(self, value): self.use_piezo = value - self._log.info("MultiPointWorker: updated use_piezo to", value) + self._log.info(f"MultiPointWorker: updated use_piezo to {value}") def run(self): self.start_time = time.perf_counter_ns()