From 88e67d69fcc4f10c841d01cffddc5da70fb67ef7 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 23 Jan 2026 14:56:28 -0500 Subject: [PATCH] removing debug prints --- lazy.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lazy.go b/lazy.go index 3750850..40006f8 100644 --- a/lazy.go +++ b/lazy.go @@ -114,7 +114,6 @@ func kindToRandom(field reflect.StructField) any { //manner. For now we check those types first, and will clean this up later. switch field.Type { case reflect.TypeOf(sql.NullTime{}): - fmt.Println("found nulltime") var temp sql.NullTime if !isNull() { temp.Valid = true @@ -191,10 +190,8 @@ func kindToRandom(field reflect.StructField) any { case reflect.String: return fmt.Sprintf("random %d", rand.Int()) case reflect.Bool: - fmt.Println("THIS TWO") return rand.Int()%2 == 0 case reflect.TypeOf(time.Time{}).Kind(): - fmt.Println("THIS?") return time.Now() case reflect.Array: underlying := field.Type.Elem().Kind() @@ -280,7 +277,7 @@ func kindToRandom(field reflect.StructField) any { case reflect.String: var strslice []string for x := 0; x < count; x++ { - strslice = append(strslice, fmt.Sprintf("%d", rand.Int())) + strslice = append(strslice, fmt.Sprintf("random %d", rand.Int())) } return strslice case reflect.Bool: