From 2e429b4ef61140b5efc77f586084d57054072bd6 Mon Sep 17 00:00:00 2001 From: lorenzejay Date: Mon, 29 Dec 2025 10:58:43 -0800 Subject: [PATCH] memory events consistency --- lib/crewai/src/crewai/events/utils/console_formatter.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/crewai/src/crewai/events/utils/console_formatter.py b/lib/crewai/src/crewai/events/utils/console_formatter.py index bc4b896bb..643a1dd4f 100644 --- a/lib/crewai/src/crewai/events/utils/console_formatter.py +++ b/lib/crewai/src/crewai/events/utils/console_formatter.py @@ -900,9 +900,8 @@ To enable tracing, do any one of these: if memory_content: memory_text = str(memory_content) - if len(memory_text) > 500: - memory_text = memory_text[:497] + "..." - content.append("Content: ", style="white") + + content.append("Content: \n", style="white") content.append(f"{memory_text}\n", style="green ") self.print_panel(content, "🧠 Memory Retrieved", "green")