From d75a6a6d8a59f3070cd43a265c12020c31cbaa73 Mon Sep 17 00:00:00 2001 From: raoptimus Date: Fri, 1 Mar 2024 13:08:31 +0300 Subject: [PATCH] Remove debug --- internal/dal/repository/postgres.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/dal/repository/postgres.go b/internal/dal/repository/postgres.go index 23d1cb7..0f44e1f 100644 --- a/internal/dal/repository/postgres.go +++ b/internal/dal/repository/postgres.go @@ -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) }