From d22df007a7875d3af667013d0e54363f284e753d Mon Sep 17 00:00:00 2001 From: Mikael Hugo Date: Tue, 12 May 2026 17:04:11 +0200 Subject: [PATCH] fix(headless): correct log message to show actual command format The log message said '/sf ${command}' but the actual command sent is '/${command}' (without the sf namespace). Fix to match actual dispatch. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/headless.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/headless.ts b/src/headless.ts index 6319c7337..5942503fa 100644 --- a/src/headless.ts +++ b/src/headless.ts @@ -1935,7 +1935,7 @@ async function runHeadlessOnce( if (!options.json) { writeHeadlessLine( - `[headless] Running /sf ${options.command}${options.commandArgs.length > 0 ? " " + options.commandArgs.join(" ") : ""}...`, + `[headless] Running /${options.command}${options.commandArgs.length > 0 ? " " + options.commandArgs.join(" ") : ""}...`, ); }