1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-17 20:47:57 +02:00

throwing prints around because I cant run tests locally

This commit is contained in:
spmassot 2018-10-17 17:03:54 -04:00
parent 1c15e45764
commit 5fe2f1beda

View File

@ -663,6 +663,8 @@ func (s *IssueService) Create(issue *Issue) (*Issue, *Response, error) {
func (s *IssueService) UpdateWithOptions(issue *Issue, opts *UpdateQueryOptions) (*Issue, *Response, error) {
apiEndpoint := fmt.Sprintf("rest/api/3/issue/%v", issue.Key)
url, err := addOptions(apiEndpoint, opts)
fmt.Println(url)
fmt.Println(issue)
if err != nil {
return nil, nil, err
}