Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion emrg/server/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -3445,7 +3445,12 @@ async def _reflect():
"tool_call_id": tc_id,
"content": result_text,
})
logger.debug("memory reflection tool: %s → %s", tc_name, _redact_string(result_text[:100]))
logger.debug(
"memory reflection: id=%s round=%d tool %s → %s%s",
session.session_id, _round + 1, tc_name,
_redact_string(result_text[:100]),
"…" if len(result_text) > 100 else "",
)

except Exception:
logger.debug("memory reflection failed", exc_info=True)
Expand Down
Loading