From 30571246bf7aa3f023fe4c2599b1ed13c319406f Mon Sep 17 00:00:00 2001 From: zhufl Date: Tue, 29 Sep 2020 10:44:12 +0800 Subject: [PATCH] [Trivial]Add missing print format in log message This is to add missing print format in log message. Change-Id: I3f2fe038bd30b1880853ca90f3ef9cdcea02e4d0 --- cinder/volume/drivers/nimble.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/volume/drivers/nimble.py b/cinder/volume/drivers/nimble.py index 4ce2dd82a2d..b0057a7112f 100644 --- a/cinder/volume/drivers/nimble.py +++ b/cinder/volume/drivers/nimble.py @@ -1539,7 +1539,7 @@ class NimbleRestAPIExecutor(object): r = self.get_query(api, filter) LOG.info("ACL record is %(result)s", {'result': r.json()}) if not r.json()['data']: - LOG.warning('ACL is not available for this volume %(vol_id)', { + LOG.warning('ACL is not available for this volume %(vol_id)s', { 'vol_id': volume_id}) return return r.json()['data'][0]