mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
volume server logs add url info
debug https://github.com/seaweedfs/seaweedfs/issues/3964
This commit is contained in:
parent
38c63c429b
commit
fc6b9e6e0c
|
@ -103,7 +103,7 @@ func writeJson(w http.ResponseWriter, r *http.Request, httpStatus int, obj inter
|
||||||
// wrapper for writeJson - just logs errors
|
// wrapper for writeJson - just logs errors
|
||||||
func writeJsonQuiet(w http.ResponseWriter, r *http.Request, httpStatus int, obj interface{}) {
|
func writeJsonQuiet(w http.ResponseWriter, r *http.Request, httpStatus int, obj interface{}) {
|
||||||
if err := writeJson(w, r, httpStatus, obj); err != nil {
|
if err := writeJson(w, r, httpStatus, obj); err != nil {
|
||||||
glog.V(0).Infof("error writing JSON status %d: %v", httpStatus, err)
|
glog.V(0).Infof("error writing JSON status %s %d: %v", r.URL, httpStatus, err)
|
||||||
glog.V(1).Infof("JSON content: %+v", obj)
|
glog.V(1).Infof("JSON content: %+v", obj)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue