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) }