diff --git a/debye_bec/devices/pilatus/pilatus.py b/debye_bec/devices/pilatus/pilatus.py index 2f620c4..e287da7 100644 --- a/debye_bec/devices/pilatus/pilatus.py +++ b/debye_bec/devices/pilatus/pilatus.py @@ -196,12 +196,12 @@ class Pilatus(PSIDeviceBase, ADBase): if last_image is not None: if np.array_equal(data, last_image.data): # No update if image is the same, ~2.5ms on 2400x2400 image (6M) - logger.info( + logger.debug( f"Pilatus preview image for {self.name} is the same as last one, not updating." ) continue - logger.info(f"Setting data for {self.name}") + logger.debug(f"Setting preview data for {self.name}") self.preview.put(data) except Exception: # pylint: disable=broad-except content = traceback.format_exc()