From ae461ebc81b23d345c56c17e0f834cc8a212628e Mon Sep 17 00:00:00 2001 From: Will Miao Date: Thu, 20 Aug 2026 22:36:50 +0800 Subject: [PATCH] fix(registry): replace one %s placeholder per log argument --- web/comfyui/workflow_registry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/comfyui/workflow_registry.js b/web/comfyui/workflow_registry.js index 2b5b687f..19ff70a2 100644 --- a/web/comfyui/workflow_registry.js +++ b/web/comfyui/workflow_registry.js @@ -316,7 +316,7 @@ app.registerExtension({ const ts = new Date().toISOString().slice(11, 23); let msg = format; for (const arg of args) { - msg = msg.replace(/%s/g, String(arg)); + msg = msg.replace(/%s/, String(arg)); } console.debug(`[LM:Registry ${ts}] ${msg}`); },