Skip to content

Commit 65ce7ca

Browse files
authored
Remove logging statements (#146)
1 parent 3f110ce commit 65ce7ca

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

internal/dinosql/gen.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ func (r Result) QueryImports(filename string) [][]string {
293293
}
294294
} else {
295295
if strings.HasPrefix(q.Ret.Type(), "[]") && q.Ret.Type() != "[]byte" {
296-
log.Println(q.Ret.Type(), q.Ret.Name, q.Ret.typ)
297296
return true
298297
}
299298
}
@@ -302,13 +301,11 @@ func (r Result) QueryImports(filename string) [][]string {
302301
if q.Arg.IsStruct() {
303302
for _, f := range q.Arg.Struct.Fields {
304303
if strings.HasPrefix(f.Type, "[]") && f.Type != "[]byte" {
305-
log.Println(f.Type, f.Name)
306304
return true
307305
}
308306
}
309307
} else {
310308
if strings.HasPrefix(q.Arg.Type(), "[]") && q.Arg.Type() != "[]byte" {
311-
log.Println(q.Arg.Type(), q.Arg.Name, q.Arg.typ)
312309
return true
313310
}
314311
}

0 commit comments

Comments
 (0)