fix log instead of fmt
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -405,9 +405,9 @@ func UserGetSafesAllowed(userId int) ([]UserSafe, error) {
|
|||||||
|
|
||||||
// Print the raw row record
|
// Print the raw row record
|
||||||
for _, column := range columns {
|
for _, column := range columns {
|
||||||
fmt.Printf("%s: %v\n", column, rowValues[column])
|
log.Printf("%s: %v\n", column, rowValues[column])
|
||||||
}
|
}
|
||||||
fmt.Println("-----------")
|
log.Println("-----------")
|
||||||
|
|
||||||
}
|
}
|
||||||
log.Printf("UserGetSafesAllowed retrieved '%d' results\n", len(results))
|
log.Printf("UserGetSafesAllowed retrieved '%d' results\n", len(results))
|
||||||
|
Reference in New Issue
Block a user