Skip to content

Commit

Permalink
Clean up some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Jun 23, 2024
1 parent 18519bc commit debac3f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions sql/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ func OpenSubmission(marathonIds []string) {
// language=PostgreSQL
sql := fmt.Sprintf("UPDATE marathon SET submits_open = True, can_edit_submissions = True WHERE id IN (%s)", marathonIdsParsed)

log.Println(sql)

db := GetConnection()
defer CloseConnection(db)

Expand All @@ -79,8 +77,6 @@ func CloseSubmission(marathonIds []string) {
// language=PostgreSQL
sql := fmt.Sprintf("UPDATE marathon SET submits_open = False WHERE id IN (%s)", marathonIdsParsed)

log.Println(sql)

db := GetConnection()
defer CloseConnection(db)

Expand Down

0 comments on commit debac3f

Please sign in to comment.