From d9d7f20c23c61d8b0e825962b8d4f25196b7649c Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Tue, 29 Mar 2022 07:59:42 +0000 Subject: [PATCH] Change unsupported fileno() LOG to debug When restoring a volume this log lines is logged many times but there is nothing to really do or know. When our backup workers is busy this is just thousands of lines that doesn't give us anything. Change-Id: I1f356e16a0d887eba32731e822c1b6da5299965c --- cinder/backup/chunkeddriver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)