From d522df0ecd162b414781eb8c0da119f90599107c Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 4 Oct 2020 01:35:32 -0700 Subject: [PATCH] adjust log level --- weed/storage/backend/volume_create_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/storage/backend/volume_create_linux.go b/weed/storage/backend/volume_create_linux.go index 4602831ca..260c2c2a3 100644 --- a/weed/storage/backend/volume_create_linux.go +++ b/weed/storage/backend/volume_create_linux.go @@ -16,7 +16,7 @@ func CreateVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32 } if preallocate != 0 { syscall.Fallocate(int(file.Fd()), 1, 0, preallocate) - glog.V(0).Infof("Preallocated %d bytes disk space for %s", preallocate, fileName) + glog.V(1).Infof("Preallocated %d bytes disk space for %s", preallocate, fileName) } return NewDiskFile(file), nil }