aboutsummaryrefslogtreecommitdiff
path: root/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'client.go')
-rw-r--r--client.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/client.go b/client.go
index 238543c..c615066 100644
--- a/client.go
+++ b/client.go
@@ -4,6 +4,7 @@ import (
"bytes"
"encoding/json"
"errors"
+ "log"
"net/http"
"net/textproto"
"regexp"
@@ -75,6 +76,7 @@ func (c *Client) Post(s Signer, uri string, v interface{}) (*http.Response, erro
if err != nil {
return nil, err
}
+ log.Println(string(body))
signed, err := s.Sign(body, c)
if err != nil {