From af897bc8287afe9a5c2350e37d191a13530b1f99 Mon Sep 17 00:00:00 2001 From: "zhu.fanglei" Date: Tue, 7 Jul 2020 15:07:01 +0800 Subject: [PATCH] Fix missing print format in log message This is to fix the missing print format issue in log message. Change-Id: I183133da0b12352a72206f048e5f4167a25e1f5c --- ironic/drivers/modules/drac/raid.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ironic/drivers/modules/drac/raid.py b/ironic/drivers/modules/drac/raid.py index facc0aeba7..cd831af6cb 100644 --- a/ironic/drivers/modules/drac/raid.py +++ b/ironic/drivers/modules/drac/raid.py @@ -371,8 +371,7 @@ def list_raid_settings(node): client = drac_common.get_drac_client(node) return client.list_raid_settings() except drac_exceptions.BaseClientException as exc: - LOG.error('DRAC driver failed to list raid settings' - 'on %(raid_controller_fqdd)s ' + LOG.error('DRAC driver failed to list raid settings ' 'for node %(node_uuid)s. ' 'Reason: %(error)s.', {'node_uuid': node.uuid,