From 959b916746fa51bcca6fe322ac1974782ae2effb Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 2 Aug 2024 19:20:11 -0400 Subject: [PATCH] more engine debugging --- bbot/core/engine.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bbot/core/engine.py b/bbot/core/engine.py index cde424b6a..e49b1ecfd 100644 --- a/bbot/core/engine.py +++ b/bbot/core/engine.py @@ -417,6 +417,7 @@ async def run_and_yield(self, client_id, command_fn, *args, **kwargs): self.log.debug(f"{self.name} run-and-yield {fn_str}") try: async for _ in command_fn(*args, **kwargs): + self.log.debug(f"{self.name}: sending iteration for {command_fn.__name__}(): {_}") await self.send_socket_multipart(client_id, _) except BaseException as e: error = f"Error in {self.name}.{fn_str}: {e}"