Commit 90cc6264 authored by Joukehofman's avatar Joukehofman Committed by Sander van Harmelen

Removed log print from create issue (#68)

parent 42a7783d
...@@ -19,7 +19,6 @@ package gitlab ...@@ -19,7 +19,6 @@ package gitlab
import ( import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"log"
"net/url" "net/url"
"strings" "strings"
"time" "time"
...@@ -207,8 +206,6 @@ func (s *IssuesService) CreateIssue( ...@@ -207,8 +206,6 @@ func (s *IssuesService) CreateIssue(
return nil, nil, err return nil, nil, err
} }
log.Printf("req: %#+v\n", req.URL)
i := new(Issue) i := new(Issue)
resp, err := s.client.Do(req, i) resp, err := s.client.Do(req, i)
if err != nil { if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment