Fix missing value types for log message

This patch add missing value types for some log message of exception.

Change-Id: Ic9ccbad99aa8945c81c6539cb99ff0e3a45353c1
Closes-Bug: #1494574
This commit is contained in:
Sergey Vilgelm 2015-09-14 10:52:16 +03:00
parent 0f3ec7c70a
commit f5006ea10a
1 changed files with 1 additions and 1 deletions

View File

@ -1810,7 +1810,7 @@ class ScaleIOConnector(InitiatorConnector):
raise exception.BrickException(message=msg)
if r.status_code != 200 and "errorCode" in sdc_id:
msg = (_("Error getting sdc id from ip %(sdc_ip): %(err)s") %
msg = (_("Error getting sdc id from ip %(sdc_ip)s: %(err)s") %
{'sdc_ip': self.local_sdc_ip, 'err': sdc_id['message']})
LOG.error(msg)