소스 검색

Moved resquest api data log to request() func

Bruce Marriner 8 년 전
부모
커밋
11404bc598
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      restapi.go

+ 1 - 4
restapi.go

@@ -35,10 +35,6 @@ var ErrJSONUnmarshal = errors.New("json unmarshal")
 // All the other Discord REST Calls in this file use this function.
 func (s *Session) Request(method, urlStr string, data interface{}) (response []byte, err error) {
 
-	if s.Debug {
-		log.Println("API REQUEST  PAYLOAD :: [" + fmt.Sprintf("%+v", data) + "]")
-	}
-
 	var body []byte
 	if data != nil {
 		body, err = json.Marshal(data)
@@ -55,6 +51,7 @@ func (s *Session) request(method, urlStr, contentType string, b []byte) (respons
 
 	if s.Debug {
 		log.Printf("API REQUEST %8s :: %s\n", method, urlStr)
+		log.Printf("API REQUEST  PAYLOAD :: [%s]\n", string(b))
 	}
 
 	req, err := http.NewRequest(method, urlStr, bytes.NewBuffer(b))