From 6f2a578e8094caa6a522a8e6c6b167309b19fb05 Mon Sep 17 00:00:00 2001 From: space-nuko <24979496+space-nuko@users.noreply.github.com> Date: Sat, 6 May 2023 23:11:00 -0500 Subject: [PATCH] Fix --- src/lib/nodes/ComfyBackendNode.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/nodes/ComfyBackendNode.ts b/src/lib/nodes/ComfyBackendNode.ts index e5a6206..b7a0d42 100644 --- a/src/lib/nodes/ComfyBackendNode.ts +++ b/src/lib/nodes/ComfyBackendNode.ts @@ -108,11 +108,12 @@ export class ComfyBackendNode extends ComfyGraphNode { const config = configs[input.name] if (config != null && index >= 0 && index < this.inputs.length) { if (input.config == null || Object.keys(input.config).length !== Object.keys(config).length) { - console.error("SET", input, config) + console.debug("[ComfyBackendNode] restore input config", input, config) input.config = config } } else { + console.error("[ComfyBackendNode] Missing input config in onConfigure()!", input, configs) input.config = {} } }