Browse Source

add cache error log

pull/2348/head
Chris Lu 3 years ago
parent
commit
c1255d30ad
  1. 1
      weed/server/filer_server_handlers_read.go

1
weed/server/filer_server_handlers_read.go

@ -177,6 +177,7 @@ func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
Directory: dir,
Name: name,
}); err != nil {
glog.Errorf("cache %s: %v", entry.FullPath, err)
return fmt.Errorf("cache %s: %v", entry.FullPath, err)
} else {
chunks = resp.Entry.Chunks

Loading…
Cancel
Save