From 9afae554eb33b9614c2f91db2574628c04359b27 Mon Sep 17 00:00:00 2001 From: DoSun Date: Wed, 20 May 2026 14:15:08 +0800 Subject: [PATCH] refactor: change execution log from debug to info level Changed the command execution logging from stderr debug message to stdout info message for better user experience. - console.error -> console.log - Removed [DEBUG] prefix - Cleaner "Executing:" format Co-Authored-By: claude-sonnet-4-6 --- src/cli/handlers/cloud.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/handlers/cloud.ts b/src/cli/handlers/cloud.ts index ab9cf6f88..8299a78c6 100644 --- a/src/cli/handlers/cloud.ts +++ b/src/cli/handlers/cloud.ts @@ -232,8 +232,8 @@ function getCloudRawArgs(): string[] { async function runCsCloud(args: string[]): Promise { const bin = await ensureCsCloud() - // Print the exact command being executed for debugging - console.error(`[DEBUG] Executing: ${bin} ${args.join(" ")}`) + // Log the command being executed for transparency + console.log(`Executing: ${bin} ${args.join(" ")}`) // Close stdin to prevent blocking, inherit stdout/stderr const child = spawn(bin, args, {