Skip to content

Commit a102924

Browse files
committed
fix: remove debug logs
1 parent a48b809 commit a102924

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

server/db/providers/cassandradb/email_template.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ func (p *provider) UpdateEmailTemplate(ctx context.Context, emailTemplate models
8181
updateFields = strings.TrimSuffix(updateFields, ",")
8282

8383
query := fmt.Sprintf("UPDATE %s SET %s WHERE id = '%s'", KeySpace+"."+models.Collections.EmailTemplate, updateFields, emailTemplate.ID)
84-
fmt.Println("=> query:", query)
8584
err = p.db.Query(query).Exec()
8685
if err != nil {
8786
return nil, err

0 commit comments

Comments
 (0)