comfyui-mcp 0.50.22 → 0.50.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/orchestrator/index.js +3 -1
- package/dist/orchestrator/index.js.map +1 -1
- package/dist/orchestrator/panel-tools.js +69 -10
- package/dist/orchestrator/panel-tools.js.map +1 -1
- package/dist/orchestrator/session-store.js +59 -1
- package/dist/orchestrator/session-store.js.map +1 -1
- package/dist/services/crash-log.js +47 -6
- package/dist/services/crash-log.js.map +1 -1
- package/package.json +1 -1
|
@@ -4489,7 +4489,9 @@ export async function runPanelOrchestrator() {
|
|
|
4489
4489
|
if (note && key && !injectedCrashes.has(key)) {
|
|
4490
4490
|
injectedCrashes.add(key);
|
|
4491
4491
|
outText = `${note}\n\n${event.text}`;
|
|
4492
|
-
logger.warn(
|
|
4492
|
+
logger.warn(crash.unreadable
|
|
4493
|
+
? `[panel-orchestrator] tab ${event.tab_id.slice(0, 8)} crash-log UNREADABLE note injected on resume — whether ComfyUI crashed is unknown (log=${crash.unreadable.path}: ${crash.unreadable.reason})`
|
|
4494
|
+
: `[panel-orchestrator] tab ${event.tab_id.slice(0, 8)} crash-dump injected on resume — culprit=${crash.culpritNode ?? "?"} frame=${crash.culpritFrame ?? "?"} (log=${crash.logPath ?? "?"})`);
|
|
4493
4495
|
}
|
|
4494
4496
|
}
|
|
4495
4497
|
catch (err) {
|