Skip to content

Commit e0ecb41

Browse files
committed
🍑 πŸ§‹ 🍦 remove debug print
1 parent 7756e19 commit e0ecb41

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

β€Ždomains/cache_plan_repository_test.goβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package domains
22

33
import (
4-
"fmt"
54
"strings"
65
"testing"
76

@@ -140,6 +139,5 @@ func TestSaveCachePlan(t *testing.T) {
140139
writer := &strings.Builder{}
141140
err := SaveCachePlan(writer, parsed)
142141
assert.NoError(t, err)
143-
fmt.Printf("formatted:\n%s\n", writer.String())
144142
assert.Equal(t, formatted, writer.String())
145143
}

β€Žnormalizer.goβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ func NormalizeQuery(query string) (NormalizedQuery, error) {
7272
// Apply patterns to normalize the query and collect conditions
7373
for _, pattern := range patterns {
7474
matches := pattern.regex.FindAllStringSubmatch(normalizedQuery, -1)
75-
fmt.Printf("matches: %v\n", matches)
7675
for _, match := range matches {
7776
normalizedQuery = pattern.regex.ReplaceAllString(normalizedQuery, pattern.replacement)
7877
if pattern.condition != nil {

0 commit comments

Comments
Β (0)