diff --git a/pkg/os/volume/volume.go b/pkg/os/volume/volume.go index 5c1a6f0eab..3de538e4b1 100644 --- a/pkg/os/volume/volume.go +++ b/pkg/os/volume/volume.go @@ -145,7 +145,7 @@ func ResizeVolume(volumeID string, size int64) error { // only resize if finalSize - currentSize is greater than 100MB if finalSize-currentSize < 100*1024*1024 { - klog.V(2).Infof("Attempted to resize volume %s to a lower size, from currentBytes=%d wantedBytes=%d", volumeID, currentSize, finalSize) + klog.V(2).Infof("minimum resize difference(1GB) not met, skipping resize. volumeID=%s currentSize=%d finalSize=%d", volumeID, currentSize, finalSize) return nil }