adjust logs

This commit is contained in:
Chris Lu 2020-08-16 16:32:22 -07:00
parent 22e5132b3a
commit 627b081b67

View file

@ -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
}