Skip to content

Commit 6150b05

Browse files
committed
remove test log statement
1 parent 22404b5 commit 6150b05

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

oui/db.go

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"database/sql"
55
"errors"
66
"fmt"
7-
"log"
87
"strconv"
98
"strings"
109

@@ -185,7 +184,6 @@ func (ouidb *OUIDB) Find(search string) ([]*VendorDef, error) {
185184
return nil, err
186185
}
187186
q := fmt.Sprintf("SELECT prefix,length,org,registry FROM %s WHERE prefix LIKE '%s%%'", ouidb.Version, mac.OUI())
188-
log.Println(q)
189187
rows, err := ouidb.Connection.Query(q)
190188
if err != nil {
191189
return nil, err

0 commit comments

Comments
 (0)