aboutsummaryrefslogtreecommitdiff
path: root/weed/storage/backend
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-08-16 16:32:22 -0700
committerChris Lu <chris.lu@gmail.com>2020-08-16 16:32:22 -0700
commit627b081b671c20810580b26b321ce5ae5bc0872f (patch)
tree798845167ca70f80700ac3b4788516c35836279d /weed/storage/backend
parent22e5132b3a0bfae7e3b531fd5d670b004e7e7185 (diff)
downloadseaweedfs-627b081b671c20810580b26b321ce5ae5bc0872f.tar.xz
seaweedfs-627b081b671c20810580b26b321ce5ae5bc0872f.zip
adjust logs
Diffstat (limited to 'weed/storage/backend')
-rw-r--r--weed/storage/backend/volume_create.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/backend/volume_create.go b/weed/storage/backend/volume_create.go
index abb1f7238..d4bd8e40f 100644
--- a/weed/storage/backend/volume_create.go
+++ b/weed/storage/backend/volume_create.go
@@ -14,7 +14,7 @@ func CreateVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32
return nil, e
}
if preallocate > 0 {
- glog.V(0).Infof("Preallocated disk space for %s is not supported", fileName)
+ glog.V(2).Infof("Preallocated disk space for %s is not supported", fileName)
}
return NewDiskFile(file), nil
}