From f7b662f7d1c496076be1ab49d74159e649a3d84f Mon Sep 17 00:00:00 2001 From: 0xLogicalx Date: Tue, 25 Nov 2025 23:57:53 +0100 Subject: [PATCH] Update rules.go --- signer/rules/rules.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/rules/rules.go b/signer/rules/rules.go index c9921e57a9..222f06160b 100644 --- a/signer/rules/rules.go +++ b/signer/rules/rules.go @@ -36,7 +36,7 @@ import ( func consoleOutput(call goja.FunctionCall) goja.Value { output := []string{"JS:> "} for _, argument := range call.Arguments { - output = append(output, fmt.Sprintf("%v", argument)) + output = append(output, fmt.Sprint(argument)) } fmt.Fprintln(os.Stderr, strings.Join(output, " ")) return goja.Undefined()