]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix _LI() to _LW() in LOG.warning message
authorFuruta Tomonori <furuta.tomonori@jp.fujitsu.com>
Thu, 23 Jul 2015 08:33:28 +0000 (17:33 +0900)
committerankitagrawal <ankit11.agrawal@nttdata.com>
Fri, 21 Aug 2015 07:17:47 +0000 (00:17 -0700)
Closes-Bug: #1477535
Change-Id: If33cc839d6d3ac5b479cfeaabc50405c9274f7cb

cinder/volume/drivers/netapp/eseries/library.py

index 00425de8792893ad7bc5e30d92a26c76e8b73992..b768cb3fc58878cb1d22d3676bf25384b81099d8 100644 (file)
@@ -477,7 +477,7 @@ class NetAppESeriesLibrary(object):
             vol = self._get_volume(volume['name_id'])
             self._client.delete_volume(vol['volumeRef'])
         except (exception.NetAppDriverException, KeyError):
-            LOG.warning(_LI("Volume %s already deleted."), volume['id'])
+            LOG.warning(_LW("Volume %s already deleted."), volume['id'])
             return
 
     def create_snapshot(self, snapshot):