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.
@@ -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(`[panel-orchestrator] tab ${event.tab_id.slice(0, 8)} crash-dump injected on resume — culprit=${crash.culpritNode ?? "?"} frame=${crash.culpritFrame ?? "?"} (log=${crash.logPath ?? "?"})`);
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) {