chore: remove console.* debug logging from non-CLI source files

This commit is contained in:
YeonGyu-Kim
2026-03-18 15:29:50 +09:00
parent 1669c83782
commit 01e18f8773
2 changed files with 2 additions and 5 deletions

View File

@@ -411,10 +411,7 @@ describe("createWriteExistingFileGuardHook", () => {
try {
symlinkSync(targetFile, symlinkPath)
} catch (error) {
console.warn(
"Skipping symlink test: symlinks are not supported or cannot be created in this environment.",
error
)
// Symlinks not supported in this environment — skip
return
}

View File

@@ -21,7 +21,7 @@ describe("isServerInstalled", () => {
try {
rmSync(tempDir, { recursive: true, force: true })
} catch (e) {
console.error(`Failed to clean up temp dir: ${e}`)
// cleanup failed — ignored
}
if (process.platform === "win32") {