mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix log
This commit is contained in:
parent
4d1eedfa28
commit
7efeb146c5
|
@ -34,7 +34,7 @@ func (fs *FilerServer) queryFileInfoByPath(w http.ResponseWriter, r *http.Reques
|
||||||
fileId = entry.Chunks[0].FileId
|
fileId = entry.Chunks[0].FileId
|
||||||
urlLocation, err = operation.LookupFileId(fs.getMasterNode(), fileId)
|
urlLocation, err = operation.LookupFileId(fs.getMasterNode(), fileId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
glog.V(1).Infoln("operation LookupFileId %s failed, err is %s", fileId, err.Error())
|
glog.V(1).Infof("operation LookupFileId %s failed, err is %s", fileId, err.Error())
|
||||||
w.WriteHeader(http.StatusNotFound)
|
w.WriteHeader(http.StatusNotFound)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ func (vs *VolumeServer) assignVolumeHandler(w http.ResponseWriter, r *http.Reque
|
||||||
if r.FormValue("preallocate") != "" {
|
if r.FormValue("preallocate") != "" {
|
||||||
preallocate, err = strconv.ParseInt(r.FormValue("preallocate"), 10, 64)
|
preallocate, err = strconv.ParseInt(r.FormValue("preallocate"), 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
glog.V(0).Infoln("ignoring invalid int64 value for preallocate = %v", r.FormValue("preallocate"))
|
glog.V(0).Infof("ignoring invalid int64 value for preallocate = %v", r.FormValue("preallocate"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err = vs.store.AddVolume(
|
err = vs.store.AddVolume(
|
||||||
|
@ -41,7 +41,7 @@ func (vs *VolumeServer) assignVolumeHandler(w http.ResponseWriter, r *http.Reque
|
||||||
} else {
|
} else {
|
||||||
writeJsonError(w, r, http.StatusNotAcceptable, err)
|
writeJsonError(w, r, http.StatusNotAcceptable, err)
|
||||||
}
|
}
|
||||||
glog.V(2).Infoln("assign volume = %s, collection = %s , replication = %s, error = %v",
|
glog.V(2).Infof("assign volume = %s, collection = %s , replication = %s, error = %v",
|
||||||
r.FormValue("volume"), r.FormValue("collection"), r.FormValue("replication"), err)
|
r.FormValue("volume"), r.FormValue("collection"), r.FormValue("replication"), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ func (vs *VolumeServer) vacuumVolumeCompactHandler(w http.ResponseWriter, r *htt
|
||||||
if r.FormValue("preallocate") != "" {
|
if r.FormValue("preallocate") != "" {
|
||||||
preallocate, err = strconv.ParseInt(r.FormValue("preallocate"), 10, 64)
|
preallocate, err = strconv.ParseInt(r.FormValue("preallocate"), 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
glog.V(0).Infoln("Failed to parse int64 preallocate = %s: %v", r.FormValue("preallocate"), err)
|
glog.V(0).Infof("Failed to parse int64 preallocate = %s: %v", r.FormValue("preallocate"), err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err = vs.store.CompactVolume(r.FormValue("volume"), preallocate)
|
err = vs.store.CompactVolume(r.FormValue("volume"), preallocate)
|
||||||
|
|
Loading…
Reference in a new issue