Skip to content

Commit 8909385

Browse files
committed
Quick fix for Spinnaker debugging as recommended in #72.
1 parent 75b175d commit 8909385

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labscript_devices/SpinnakerCamera/blacs_workers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ def stop_acquisition(self):
234234
num_frames=self.get_attribute('StreamTotalBufferCount', stream_map=True)
235235
failed_frames=self.get_attribute('StreamFailedBufferCount', stream_map=True)
236236
underrun_frames=self.get_attribute('StreamBufferUnderrunCount', stream_map=True)
237-
print('Stream info: %d frames acquired, %d failed, %d underrun' %
238-
(num_frames, failed_frames, underrun_frames))
237+
print('Stream info: %s frames acquired, %s failed, %s underrun' %
238+
(str(num_frames), str(failed_frames), str(underrun_frames)))
239239

240240
def abort_acquisition(self):
241241
print('Stopping acquisition...')

0 commit comments

Comments
 (0)