FIX: Left some debugging logs in

This commit is contained in:
Azpect3120 2024-08-19 17:35:46 -07:00
parent b5159e8976
commit c821ceb366
2 changed files with 0 additions and 3 deletions

View File

@ -42,7 +42,6 @@ func CreateConnection(c *gin.Context) {
for true { for true {
var dupe bool = false var dupe bool = false
for n := range connections { for n := range connections {
fmt.Printf("is %s == %s\n", n, name)
if n == name { if n == name {
name = fmt.Sprintf("%s (copy)", name) name = fmt.Sprintf("%s (copy)", name)
dupe = true dupe = true

View File

@ -152,8 +152,6 @@ func fillColumns(conn *sql.DB, driver string, tree map[string][]model.Column) er
fkeys = append(fkeys, fkey) fkeys = append(fkeys, fkey)
} }
fmt.Printf("%s: %+v\n", table, fkeys)
// Get the restraints of the table // Get the restraints of the table
rows, err := conn.Query(fmt.Sprintf(qs[2], table)) rows, err := conn.Query(fmt.Sprintf(qs[2], table))
if err != nil { if err != nil {