aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}