aboutsummaryrefslogtreecommitdiff
path: root/parser/parser_tracing.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <sokolyuk@gmail.com>2022-08-24 14:27:07 +0200
committerDimitri Sokolyuk <sokolyuk@gmail.com>2022-08-24 14:27:07 +0200
commite452a2ec377334144aa9204514b8ad4bd2c2254e (patch)
tree8aadd92002a6c9587e2582c13eb0b62db164aa3f /parser/parser_tracing.go
parent6293378bb84702e9cbfc392158114c07d23d9642 (diff)
more cleanup
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 }