From 846f10a212219aa65d8226b3e558190136b5a7f6 Mon Sep 17 00:00:00 2001 From: jrmccluskey Date: Thu, 18 Sep 2025 14:05:47 -0400 Subject: [PATCH] Fix print statement format in symtab package --- sdks/go/cmd/symtab/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/go/cmd/symtab/main.go b/sdks/go/cmd/symtab/main.go index 6628cc8e4399..757710246cf4 100644 --- a/sdks/go/cmd/symtab/main.go +++ b/sdks/go/cmd/symtab/main.go @@ -38,7 +38,7 @@ var t reflect.Type // Increment is the function that will be executed by its address. // It increments a global var so we can check that it was indeed called. func Increment(str string) { - log.Printf(str) + log.Print(str) counter++ }