diff --git a/cinder/backup/chunkeddriver.py b/cinder/backup/chunkeddriver.py index df094a312ac..73e4f2eea69 100644 --- a/cinder/backup/chunkeddriver.py +++ b/cinder/backup/chunkeddriver.py @@ -736,8 +736,8 @@ class ChunkedBackupDriver(driver.BackupDriver, metaclass=abc.ABCMeta): try: fileno = volume_file.fileno() except IOError: - LOG.info("volume_file does not support fileno() so skipping " - "fsync()") + LOG.debug("volume_file does not support fileno() so skipping " + "fsync()") else: os.fsync(fileno)