From 4f7b66a59963ba8100a7061033402043590aaf8d Mon Sep 17 00:00:00 2001 From: Steven Enamakel <31011319+senamakel@users.noreply.github.com> Date: Wed, 3 Jun 2026 01:59:00 -0400 Subject: [PATCH] fix(memory): redact source tag debug identifiers (#3272) --- src/openhuman/memory_store/content/compose.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openhuman/memory_store/content/compose.rs b/src/openhuman/memory_store/content/compose.rs index fd8168fd5..fd940e97a 100644 --- a/src/openhuman/memory_store/content/compose.rs +++ b/src/openhuman/memory_store/content/compose.rs @@ -142,8 +142,8 @@ fn build_front_matter(chunk: &Chunk) -> Vec { let source_scope = meta.path_scope.as_deref().unwrap_or(&meta.source_id); log::debug!( "[content_store::compose] seeding source tag source_id={} source_scope={} path_scope={}", - meta.source_id, - source_scope, + crate::openhuman::memory::util::redact::redact(&meta.source_id), + crate::openhuman::memory::util::redact::redact(source_scope), meta.path_scope.is_some() ); let seeded_tags = with_source_tag(source_scope, &meta.tags);