remove payload from log (#3135)

This commit is contained in:
Zenara Daley 2018-09-26 11:09:14 -04:00 committed by Manuel Alejandro de Brito Fontes
parent 5ba5ddf062
commit a7c2633e4e

View file

@ -834,7 +834,7 @@ func post(url string, data interface{}) error {
return err
}
glog.V(2).Infof("Posting to %s: %s", url, buf)
glog.V(2).Infof("Posting to %s", url)
resp, err := http.Post(url, "application/json", bytes.NewReader(buf))
if err != nil {