diff --git a/src/cli/run/runner.ts b/src/cli/run/runner.ts index a648417af7..68efd0624a 100644 --- a/src/cli/run/runner.ts +++ b/src/cli/run/runner.ts @@ -55,7 +55,6 @@ export async function run(options: RunOptions): Promise { return 1 } - console.log(pc.dim(`Session: ${sessionID}`)) const ctx: RunContext = { client, diff --git a/src/hooks/comment-checker/downloader.ts b/src/hooks/comment-checker/downloader.ts index d574433299..361a57a32a 100644 --- a/src/hooks/comment-checker/downloader.ts +++ b/src/hooks/comment-checker/downloader.ts @@ -127,7 +127,6 @@ export async function downloadCommentChecker(): Promise { const downloadUrl = `https://github.com/${REPO}/releases/download/v${version}/${assetName}` debugLog(`Downloading from: ${downloadUrl}`) - console.log(`[oh-my-opencode] Downloading comment-checker binary...`) try { // Ensure cache directory exists @@ -166,7 +165,6 @@ export async function downloadCommentChecker(): Promise { } debugLog(`Successfully downloaded binary to: ${binaryPath}`) - console.log(`[oh-my-opencode] comment-checker binary ready.`) return binaryPath diff --git a/src/tools/ast-grep/downloader.ts b/src/tools/ast-grep/downloader.ts index 6ed228847a..04b76b59c8 100644 --- a/src/tools/ast-grep/downloader.ts +++ b/src/tools/ast-grep/downloader.ts @@ -79,7 +79,6 @@ export async function downloadAstGrep(version: string = DEFAULT_VERSION): Promis const assetName = `app-${arch}-${os}.zip` const downloadUrl = `https://github.com/${REPO}/releases/download/${version}/${assetName}` - console.log(`[oh-my-opencode] Downloading ast-grep binary...`) try { if (!existsSync(cacheDir)) { @@ -106,7 +105,6 @@ export async function downloadAstGrep(version: string = DEFAULT_VERSION): Promis chmodSync(binaryPath, 0o755) } - console.log(`[oh-my-opencode] ast-grep binary ready.`) return binaryPath } catch (err) { diff --git a/src/tools/system-notify/utils.ts b/src/tools/system-notify/utils.ts index f4abe5a6c5..02a099af81 100644 --- a/src/tools/system-notify/utils.ts +++ b/src/tools/system-notify/utils.ts @@ -15,7 +15,6 @@ export function detectPlatform(): Platform { if (release.toLowerCase().includes("microsoft")) return "wsl" } catch (err) { // /proc/version may not exist on all Linux systems - console.debug('[system-notify] Could not read /proc/version:', err) } return "linux" }