From 75b1e01bb0f8466de8d10fac5568f78ada2c6123 Mon Sep 17 00:00:00 2001 From: Shreya Keshive Date: Mon, 25 Aug 2025 18:29:31 -0700 Subject: [PATCH] fix(ide): remove noisy error log (#7066) --- packages/core/src/ide/process-utils.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/core/src/ide/process-utils.ts b/packages/core/src/ide/process-utils.ts index a8d58c75..17d1d520 100644 --- a/packages/core/src/ide/process-utils.ts +++ b/packages/core/src/ide/process-utils.ts @@ -99,9 +99,6 @@ async function getIdeProcessInfoForUnix(): Promise<{ } } - console.error( - 'Failed to find shell process in the process tree. Falling back to top-level process, which may be inaccurate. If you see this, please file a bug via /bug.', - ); const { command } = await getProcessInfo(currentPid); return { pid: currentPid, command }; }