fix(i18nSetup.ts): improve error message for better clarity on preprocessing failure

This commit is contained in:
snomiao
2025-09-12 01:39:05 +00:00
parent 9d7eac2642
commit 85b51b1c2c

View File

@@ -50,7 +50,7 @@ export async function preprocessLitegraph() {
processedCount++
} catch (error: unknown) {
console.warn(
` ⚠ Could not process ${filePath}: ${String((error as Error)?.message || error)}`
` ⚠ Could not preprocess file for litegraph ${filePath}: ${String((error as Error)?.message || error)}`
)
}
})