diff --git a/package.json b/package.json index 4a6c16f2f..6382e9b73 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "android:build": "tauri android build", "test": "vitest run", "test:unit": "vitest run", - "test:unit:watch": "vitest", + "test:unit:watch": "vi13:17:20.609 ERROR [skill:gmail] start() failed: start() timed out after 30s\ntest", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "test:rust": "source $HOME/.cargo/env 2>/dev/null; cargo test --manifest-path src-tauri/Cargo.toml", diff --git a/src-tauri/src/alphahuman/daemon/mod.rs b/src-tauri/src/alphahuman/daemon/mod.rs index 47e12daf7..687bc9dc5 100644 --- a/src-tauri/src/alphahuman/daemon/mod.rs +++ b/src-tauri/src/alphahuman/daemon/mod.rs @@ -338,7 +338,7 @@ async fn spawn_state_writer( _ = interval.tick() => { event_count += 1; if event_count % 12 == 1 { // Log every minute (12 * 5s = 60s) - log::info!("[alphahuman] Health monitoring active (event #{})", event_count); +// log::info!("[alphahuman] Health monitoring active (event #{})", event_count); } }, _ = cancel.cancelled() => { diff --git a/src/pages/Conversations.tsx b/src/pages/Conversations.tsx index 870249586..453f32750 100644 --- a/src/pages/Conversations.tsx +++ b/src/pages/Conversations.tsx @@ -447,6 +447,7 @@ const Conversations = () => { toolArgs ); const result = await skillManager.callTool(skillId, toolName, toolArgs); + console.log(`[Conversations] tool "${toolName}" calling result:`, result); toolResultContent = result.content.map(c => c.text).join('\n'); let toolReturnedError = result.isError; if (!toolReturnedError && toolResultContent) {