Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
raoptimus committed Mar 1, 2024
1 parent d7516e1 commit d75a6a6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion internal/dal/repository/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ func (p *Postgres) RemoveMigration(ctx context.Context, version string) error {
// ExecQuery executes a query without returning any rows.
// The args are for any placeholder parameters in the query.
func (p *Postgres) ExecQuery(ctx context.Context, query string, args ...any) error {
fmt.Println(query)
if _, err := p.conn.ExecContext(ctx, query, args...); err != nil {
return p.dbError(err, query)
}
Expand Down

0 comments on commit d75a6a6

Please sign in to comment.