diff --git a/src/command/handlers/list_todos.rs b/src/command/handlers/list_todos.rs index 1484e79..fd07b8e 100644 --- a/src/command/handlers/list_todos.rs +++ b/src/command/handlers/list_todos.rs @@ -64,7 +64,7 @@ impl CommandHandler for ListTodosCommandHandler { .list_todos(&scope_key) .map_err(|e| CommandError::new("LIST_TODOS_ERROR", e.to_string()))?; - tracing::info!( + tracing::debug!( scope_key = %scope_key, record_count = records.len(), "list_todos handler: reading from store" diff --git a/src/gateway/ws.rs b/src/gateway/ws.rs index c3ff104..0d79a4e 100644 --- a/src/gateway/ws.rs +++ b/src/gateway/ws.rs @@ -676,7 +676,7 @@ async fn handle_inbound( .get("todos_scope_key") .cloned() .unwrap_or_default(); - tracing::info!(todo_count = todos.len(), %scope_key, "list_todos command response"); + tracing::debug!(todo_count = todos.len(), %scope_key, "list_todos command response"); let _ = sender.send(WsOutbound::TodoList { todos, scope_key }).await; } }