diff options
| author | famosss <zzq09494@ly.com> | 2022-09-05 09:17:01 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-04 18:17:01 -0700 |
| commit | 7f56a40553a4c0c4d393496c35ce5856bc683e44 (patch) | |
| tree | 60a8c65e9c14d6e733d9b19f32b60e96f6ab7ada | |
| parent | a28b668647359a77f832d4ec47711b2386daa49b (diff) | |
| download | seaweedfs-7f56a40553a4c0c4d393496c35ce5856bc683e44.tar.xz seaweedfs-7f56a40553a4c0c4d393496c35ce5856bc683e44.zip | |
Turn down the 404 log level (#3585)
| -rw-r--r-- | weed/server/filer_server_handlers_read.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/server/filer_server_handlers_read.go b/weed/server/filer_server_handlers_read.go index 327eaa54d..8c3d4bcd8 100644 --- a/weed/server/filer_server_handlers_read.go +++ b/weed/server/filer_server_handlers_read.go @@ -96,7 +96,7 @@ func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request) return } if err == filer_pb.ErrNotFound { - glog.V(1).Infof("Not found %s: %v", path, err) + glog.V(2).Infof("Not found %s: %v", path, err) stats.FilerRequestCounter.WithLabelValues(stats.ErrorReadNotFound).Inc() w.WriteHeader(http.StatusNotFound) } else { |
