From c27850b2ca5a25211cf8f8087fa32c55470825d2 Mon Sep 17 00:00:00 2001 From: appel_c Date: Fri, 5 Sep 2025 09:46:40 +0200 Subject: [PATCH] w --- debye_bec/devices/pilatus/pilatus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()