mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 12:46:44 +00:00
Update rules.go
This commit is contained in:
parent
b04df226fa
commit
f7b662f7d1
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue