diff --git a/remote/mounter/block_device_mounter_utils/block_device_mounter_utils.go b/remote/mounter/block_device_mounter_utils/block_device_mounter_utils.go index 92623422..81db91e0 100644 --- a/remote/mounter/block_device_mounter_utils/block_device_mounter_utils.go +++ b/remote/mounter/block_device_mounter_utils/block_device_mounter_utils.go @@ -82,7 +82,7 @@ func (b *blockDeviceMounterUtils) MountDeviceFlow(devicePath string, fsType stri if isMounted { for _, mountpointi := range mountpointRefs { if mountpointi == mountPoint { - b.logger.Info(WarningMessageIdempotentDeviceAlreadyMounted, logs.Args{{"Device", devicePath}, {"mountpoint", mountPoint}}) + b.logger.Warning(WarningMessageIdempotentDeviceAlreadyMounted, logs.Args{{"Device", devicePath}, {"mountpoint", mountPoint}}) return nil // Indicate idempotent issue } } diff --git a/remote/mounter/block_device_utils/mpath.go b/remote/mounter/block_device_utils/mpath.go index 69fe230f..8e14bf1d 100644 --- a/remote/mounter/block_device_utils/mpath.go +++ b/remote/mounter/block_device_utils/mpath.go @@ -75,7 +75,7 @@ func (b *blockDeviceUtils) Discover(volumeWwn string, deepDiscovery bool) (strin b.logger.Debug(fmt.Sprintf("mpath device was NOT found for WWN [%s] even after sg_inq on all mpath devices.", volumeWwn)) return "", b.logger.ErrorRet(&volumeNotFoundError{volumeWwn}, "failed") } else { - b.logger.Info(fmt.Sprintf("Warning: device [%s] found for WWN [%s] after running sg_inq on all mpath devices although it was not found in multipath -ll. (Note: Could indicate multipathing issue).", dev, volumeWwn)) + b.logger.Warning(fmt.Sprintf("device [%s] found for WWN [%s] after running sg_inq on all mpath devices although it was not found in multipath -ll. (Note: Could indicate multipathing issue).", dev, volumeWwn)) mpath = b.mpathDevFullPath(dev) } } else {