Skip to content

Commit

Permalink
fix(MultiPointWorker): Fix log call with missing format
Browse files Browse the repository at this point in the history
  • Loading branch information
ianohara committed Jan 20, 2025
1 parent 98e1dac commit 68ca6d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/control/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 68ca6d1

Please sign in to comment.