Wrap log messages with _()
bug 1075082 There are a few log messages without _(), but a lot messages with _(). Wrap these log messages with _() in order to make the code consistent. Change-Id: Ibaff2c352df925f7e00d5a62d111ef73f60c944b
This commit is contained in:
parent
536bdce476
commit
146ca0db8c
@ -226,7 +226,7 @@ def bandwidth_usage(instance_ref, audit_start,
|
|||||||
nw_info = network.API().get_instance_nw_info(admin_context,
|
nw_info = network.API().get_instance_nw_info(admin_context,
|
||||||
instance_ref)
|
instance_ref)
|
||||||
except Exception:
|
except Exception:
|
||||||
LOG.exception('Failed to get nw_info', instance=instance_ref)
|
LOG.exception(_('Failed to get nw_info'), instance=instance_ref)
|
||||||
if ignore_missing_network_data:
|
if ignore_missing_network_data:
|
||||||
return
|
return
|
||||||
raise
|
raise
|
||||||
|
@ -283,7 +283,7 @@ class ProxyCallback(object):
|
|||||||
# This final None tells multicall that it is done.
|
# This final None tells multicall that it is done.
|
||||||
ctxt.reply(ending=True, connection_pool=self.connection_pool)
|
ctxt.reply(ending=True, connection_pool=self.connection_pool)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
LOG.exception('Exception during message handling')
|
LOG.exception(_('Exception during message handling'))
|
||||||
ctxt.reply(None, sys.exc_info(),
|
ctxt.reply(None, sys.exc_info(),
|
||||||
connection_pool=self.connection_pool)
|
connection_pool=self.connection_pool)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user