This commit is contained in:
Zheng Kai
2023-06-13 17:50:51 +08:00
parent 5393e78e3e
commit 86ad8ec9b4
6 changed files with 8 additions and 10 deletions

View File

@@ -5,7 +5,6 @@ import (
"net/http"
"project/pb"
"project/util"
"project/zj"
)
func (c *Core) getAB(p *pb.Req, r *http.Request) (ab []byte, cached bool, err error) {
@@ -67,7 +66,7 @@ func req(w http.ResponseWriter, r *http.Request) (p *pb.Req, err error) {
ContentType: contentType,
Body: ab,
}
zj.F(`%x %s %s %s`, p.Hash(), method, url, contentType)
// zj.F(`%x %s %s %s`, p.Hash(), method, url, contentType)
return
}