From ef410448f0e7d291c6c5880a8c514f6b9e9aee5d Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 20 Dec 2025 14:42:22 -0600 Subject: [PATCH] Log memory handling at info level --- custom_components/groqd/conversation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/custom_components/groqd/conversation.py b/custom_components/groqd/conversation.py index fc708e1..5aa8c1f 100644 --- a/custom_components/groqd/conversation.py +++ b/custom_components/groqd/conversation.py @@ -276,7 +276,7 @@ class GroqdConversationEntity( elif memory_scope == "global": memory_key = "global" - LOGGER.debug( + LOGGER.info( "Memory scope=%s memory_key=%s conv_id=%s device_id=%s user_id=%s", memory_scope, memory_key, @@ -300,7 +300,7 @@ class GroqdConversationEntity( conversation_id = ulid.ulid_now() history = [] - LOGGER.debug( + LOGGER.info( "Conversation id=%s history_len=%s memory_scope=%s", conversation_id, len(history), @@ -491,7 +491,7 @@ class GroqdConversationEntity( await self._store.async_save( {"history": self._persisted_history, "memory_index": self._memory_index} ) - LOGGER.debug( + LOGGER.info( "Persisted memory_key=%s history_len=%s conv_id=%s", memory_key, len(history),