From 9d274f0fb380217098daab7c1a73559c5fd57453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 9 Apr 2026 16:21:05 -0700 Subject: [PATCH] PipelineTask: update dangling task logging --- src/pipecat/pipeline/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/pipeline/task.py b/src/pipecat/pipeline/task.py index b3a034c91..507389341 100644 --- a/src/pipecat/pipeline/task.py +++ b/src/pipecat/pipeline/task.py @@ -1006,7 +1006,7 @@ class PipelineTask(BasePipelineTask): """Log any dangling tasks that haven't been properly cleaned up.""" tasks = [t.get_name() for t in self._task_manager.current_tasks()] if tasks: - logger.warning(f"Dangling tasks detected: {tasks}") + logger.warning(f"{self} dangling tasks detected: {tasks}") def _create_start_metadata(self) -> Dict[str, Any]: """Build and return start metadata including user-provided values."""