The usage of LOG mismatch in the code

For example:
in Service.py "LOG.info(_LW" should be "LOG.info(_LI"
Maybe it's a trivailfix.
Closes-Bug: #1645162

Change-Id: I95c6ce1efa356636669297ebdd7c248655b3e39c
This commit is contained in:
zhangyanxian 2016-11-28 09:45:12 +08:00
parent 04b28100ea
commit 1598b5e6e6
1 changed files with 1 additions and 1 deletions

View File

@ -1082,7 +1082,7 @@ class Service(service.RPCService, service.Service):
'before deleting this zone')
if hasattr(context, 'abandon') and context.abandon:
LOG.info(_LW("Abandoning zone '%(zone)s'"), {'zone': zone.name})
LOG.info(_LI("Abandoning zone '%(zone)s'"), {'zone': zone.name})
zone = self.storage.delete_zone(context, zone.id)
else:
zone = self._delete_zone_in_storage(context, zone)