Skip to content

Commit

Permalink
fix(MultiPointWorker): logging in update_use_piezo had a missing form…
Browse files Browse the repository at this point in the history
…at in string (#77)

See title.

Tested by: Running an acquisition, spamming start/stop, and making sure
no exception is thrown by this.
  • Loading branch information
ianohara authored Jan 21, 2025
1 parent 29c3746 commit 9c09da4
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 9c09da4

Please sign in to comment.