From c28150f5df87d037327a40c7397d6315f411cb27 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Mon, 8 Dec 2025 08:42:40 -0700 Subject: [PATCH] fix: remove debug console.log statements from ui.js --- tools/cli/lib/ui.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tools/cli/lib/ui.js b/tools/cli/lib/ui.js index 29b5cff7..0df9a994 100644 --- a/tools/cli/lib/ui.js +++ b/tools/cli/lib/ui.js @@ -654,15 +654,7 @@ class UI { cached: true, }); } else { - // Debug: show what paths we tried to check - console.log(chalk.dim(`DEBUG: No module config found for ${cachedModule.id}`)); - console.log( - chalk.dim( - `DEBUG: Tried paths:`, - possibleConfigPaths.map((p) => p.replace(cachedModule.cachePath, '.')), - ), - ); - console.log(chalk.dim(`DEBUG: cachedModule:`, JSON.stringify(cachedModule, null, 2))); + // Module config not found - skip silently (non-critical) } } } else if (customContentConfig.customPath) {