From d67c77b6f73ccab63d544adffe9cf3d859e71fa4 Mon Sep 17 00:00:00 2001 From: JohnnyMorganz Date: Sat, 30 Nov 2024 13:08:46 +0100 Subject: [PATCH] extension: fix debug message --- stylua-vscode/src/stylua.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylua-vscode/src/stylua.ts b/stylua-vscode/src/stylua.ts index f8841616..47068ab7 100644 --- a/stylua-vscode/src/stylua.ts +++ b/stylua-vscode/src/stylua.ts @@ -46,7 +46,7 @@ export function formatCode( args.push("-"); - outputChannel.debug(`${path} {args.join(" ")}`); + outputChannel.debug(`${path} ${args.join(" ")}`); const child = spawn(`${path}`, args, { cwd,