From ab09378fcd52fe1e17c0f504f6d6c27d20c243e8 Mon Sep 17 00:00:00 2001 From: John Costa Date: Mon, 14 Apr 2025 09:12:16 +0100 Subject: [PATCH] chore: removing SQL debug --- backend/models/user.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/models/user.go b/backend/models/user.go index afd1dc3..7af9739 100644 --- a/backend/models/user.go +++ b/backend/models/user.go @@ -96,8 +96,6 @@ func (m UserModel) ListWithProperties(ctx context.Context, userId uuid.UUID) ([] LEFT_JOIN(Notes, Notes.ID.EQ(ImageNotes.NoteID))). WHERE(UserImages.UserID.EQ(UUID(userId))) - fmt.Println(listWithPropertiesStmt.DebugSql()) - images := []ImageWithProperties{} err := listWithPropertiesStmt.QueryContext(ctx, m.dbPool, &images)