Fix request logging
This commit is contained in:
parent
d324b44cf1
commit
0edaf01f53
1 changed files with 1 additions and 1 deletions
2
http.go
2
http.go
|
@ -182,7 +182,7 @@ func (it *httpServer) verifyRequest(r *http.Request, v interface{}) (error) {
|
|||
return err
|
||||
}
|
||||
|
||||
log.Printf("req: %s", all)
|
||||
log.Printf("req: %s", ioutil.ReadAll(r.Body))
|
||||
|
||||
encPasswordAndIV := all[:256]
|
||||
encBody := all[256:]
|
||||
|
|
Loading…
Reference in a new issue