fix: remove debug console.log statements from ui.js
This commit is contained in:
parent
55cb4681bc
commit
c28150f5df
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue