aboutsummaryrefslogtreecommitdiff
path: root/parser/parser_tracing.go
diff options
context:
space:
mode:
Diffstat (limited to 'parser/parser_tracing.go')
-rw-r--r--parser/parser_tracing.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/parser/parser_tracing.go b/parser/parser_tracing.go
index bdffbd5..937aee3 100644
--- a/parser/parser_tracing.go
+++ b/parser/parser_tracing.go
@@ -1,3 +1,4 @@
+//go:build ignore
// +build ignore
package parser
@@ -16,7 +17,7 @@ func identLevel() string {
}
func tracePrint(fs string) {
- fmt.Printf("%s%s\n", identLevel(), fs)
+ fmt.Println(identLevel(), fs)
}
func incIdent() { traceLevel = traceLevel + 1 }