From 7604f07075a1c107b93714a2c625e9ef91027063 Mon Sep 17 00:00:00 2001
From: Spotlight <spotlight@joscomputing.space>
Date: Sun, 3 Oct 2021 21:34:33 -0500
Subject: [PATCH] Remove accidentally committed debugging

---
 lib/db/queries.go | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/db/queries.go b/lib/db/queries.go
index 25dc63f..1c81781 100644
--- a/lib/db/queries.go
+++ b/lib/db/queries.go
@@ -255,7 +255,6 @@ func CountObjectsByAssociatedUser(userID string, typ int) (int, error) {
 
 	var count int
 	query := fmt.Sprintf(countObjectsByAssociatedUser, typeFilter)
-	fmt.Printf(query)
 	err := DB.QueryRow(query, userID).Scan(&count)
 	if err != nil {
 		return 0, err
-- 
GitLab