fix: remove debug console.log statements from ui.js

This commit is contained in:
Alex Verkhovsky 2025-12-08 08:42:40 -07:00
parent 55cb4681bc
commit c28150f5df
1 changed files with 1 additions and 9 deletions

View File

@ -654,15 +654,7 @@ class UI {
cached: true, cached: true,
}); });
} else { } else {
// Debug: show what paths we tried to check // Module config not found - skip silently (non-critical)
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)));
} }
} }
} else if (customContentConfig.customPath) { } else if (customContentConfig.customPath) {