1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-13 04:20:37 +02:00

formatting error log

This commit is contained in:
Chris Lu 2018-11-22 00:42:56 -08:00
parent fb1ed0e30d
commit 0ed816d4e9

View file

@ -73,7 +73,7 @@ func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
return
}
if n.Cookie != cookie {
glog.V(0).Infoln("request", r.URL.Path, "with unmaching cookie seen:", cookie, "expected:", n.Cookie, "from", r.RemoteAddr, "agent", r.UserAgent())
glog.V(0).Infof("request %s with cookie:%x expected:%x from %s agent %s", r.URL.Path, cookie, n.Cookie, r.RemoteAddr, r.UserAgent())
w.WriteHeader(http.StatusNotFound)
return
}