From 1c83ef260ef809fee2d276307cddd68278fee5b3 Mon Sep 17 00:00:00 2001 From: jeffyanta Date: Tue, 10 Feb 2026 13:38:42 -0500 Subject: [PATCH] Remove debug print --- ocp/data/currency/postgres/model.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/ocp/data/currency/postgres/model.go b/ocp/data/currency/postgres/model.go index 833f254..a04366c 100644 --- a/ocp/data/currency/postgres/model.go +++ b/ocp/data/currency/postgres/model.go @@ -4,7 +4,6 @@ import ( "context" "database/sql" "encoding/json" - "fmt" "strings" "time" @@ -214,7 +213,6 @@ func marshalSocialLinks(links []currency.SocialLink) string { return "[]" } data, _ := json.Marshal(links) - fmt.Println(string(data)) return string(data) }