Skip to content

Commit

Permalink
update debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
zyxkad committed Feb 22, 2024
1 parent aa16916 commit 2cb252f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/mcla_wasm/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func asJsValue(v any) (res js.Value) {
reflect.Float32, reflect.Float64:
return js.ValueOf(v)
}
println("Marshaling in asJsValue:", v)
fmt.Printf("Marshaling in asJsValue: %T %#v\n", v, v)
buf, err := json.Marshal(v)
if err != nil {
panic(err)
Expand Down

0 comments on commit 2cb252f

Please sign in to comment.