This commit is contained in:
2025-09-11 17:11:55 +02:00
parent d44be4777a
commit 17c0d47c55
@@ -312,9 +312,9 @@ class TimepixFlyBackend:
except Exception:
content = traceback.format_exc()
logger.error(f"Error in callback {cb} with error msg: {content}")
keys_in_msg_buffer = [
f"{msg['type']} with keys {msg.keys()}" for msg in self.msg_buffer
]
keys_in_msg_buffer = "".join(
[f"{msg['type']} with keys {msg.keys()} \n" for msg in self.msg_buffer]
)
logger.info(f"Keys in message buffer: {keys_in_msg_buffer}")