1
0
mirror of synced 2024-11-22 13:06:05 +03:00

Merge pull request #41 from DmitryZagorulko/master

improve debug log
This commit is contained in:
Alex Lushpai 2018-12-17 16:41:55 +03:00 committed by GitHub
commit 2512dddb84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -16,7 +16,10 @@ var (
) )
func client() *MgClient { func client() *MgClient {
return New(mgURL, mgToken) c := New(mgURL, mgToken)
c.Debug = true
return c
} }
func TestMgClient_TransportChannels(t *testing.T) { func TestMgClient_TransportChannels(t *testing.T) {

View File

@ -62,9 +62,7 @@ func makeRequest(reqType, url string, buf io.Reader, c *MgClient) ([]byte, int,
req.Header.Set("X-Transport-Token", c.Token) req.Header.Set("X-Transport-Token", c.Token)
if c.Debug { if c.Debug {
b := new(bytes.Buffer) log.Printf("MG TRANSPORT API Request: %s %s %s %v", reqType, url, c.Token, buf)
b.ReadFrom(buf)
log.Printf("MG TRANSPORT API Request: %s %s %s %s", reqType, url, c.Token, b.String())
} }
resp, err := c.httpClient.Do(req) resp, err := c.httpClient.Do(req)