Remove issue body printing

This commit is contained in:
Miguel de la Cruz 2020-03-05 20:43:53 +01:00
parent f5f721e6ef
commit 89c55b1a8c

View file

@ -2,7 +2,6 @@ package jira
import (
"bytes"
"encoding/json"
"fmt"
"text/template"
@ -93,9 +92,6 @@ func (c *JiraClient) CreateTicket(ticket *model.Ticket, campaign *model.Campaign
return nil, err
}
b, _ := json.MarshalIndent(issue, "", " ")
fmt.Println(string(b))
newIssue, _, err := c.Issue.Create(issue)
if err != nil {
return nil, err