diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-12-24 14:55:50 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-12-24 14:55:50 -0800 |
| commit | efd2f50edecf698993dd228a7acd8ae4edd201ce (patch) | |
| tree | baf949a5a7c99c9f7e1244b8ab1dbe7bd0fd0f7a /weed/storage/volume_loading.go | |
| parent | 7ba6be23120890954b185e01af3a430cca2714b4 (diff) | |
| download | seaweedfs-efd2f50edecf698993dd228a7acd8ae4edd201ce.tar.xz seaweedfs-efd2f50edecf698993dd228a7acd8ae4edd201ce.zip | |
compaction changed to .idx based deletion
Diffstat (limited to 'weed/storage/volume_loading.go')
| -rw-r--r-- | weed/storage/volume_loading.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/volume_loading.go b/weed/storage/volume_loading.go index d87a58302..a09939447 100644 --- a/weed/storage/volume_loading.go +++ b/weed/storage/volume_loading.go @@ -75,7 +75,7 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind if err == nil && alsoLoadIndex { var indexFile *os.File if v.noWriteOrDelete { - glog.V(1).Infoln("open to read file", fileName+".idx") + glog.V(0).Infoln("open to read file", fileName+".idx") if indexFile, err = os.OpenFile(fileName+".idx", os.O_RDONLY, 0644); err != nil { return fmt.Errorf("cannot read Volume Index %s.idx: %v", fileName, err) } |
