summaryrefslogtreecommitdiffstats
path: root/nova/openstack
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-11-21 16:54:54 +0000
committerGerrit Code Review <review@openstack.org>2012-11-21 16:54:54 +0000
commitb710bb15d2ea9ef0a5bc5af5b127e46f9c7eff22 (patch)
treed7b89b6cb85bd85920377012d2ed2b9c315588e3 /nova/openstack
parente8c5d1f536a7edf51985b72d4cde4deb87813a69 (diff)
parent296403319182a62c737363872f9e57d56bc2669d (diff)
downloadnova-b710bb15d2ea9ef0a5bc5af5b127e46f9c7eff22.tar.gz
nova-b710bb15d2ea9ef0a5bc5af5b127e46f9c7eff22.tar.xz
nova-b710bb15d2ea9ef0a5bc5af5b127e46f9c7eff22.zip
Merge "Wrap log messages with _()"
Diffstat (limited to 'nova/openstack')
-rw-r--r--nova/openstack/common/rpc/amqp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/openstack/common/rpc/amqp.py b/nova/openstack/common/rpc/amqp.py
index a88408437..3324e3758 100644
--- a/nova/openstack/common/rpc/amqp.py
+++ b/nova/openstack/common/rpc/amqp.py
@@ -283,7 +283,7 @@ class ProxyCallback(object):
# This final None tells multicall that it is done.
ctxt.reply(ending=True, connection_pool=self.connection_pool)
except Exception as e:
- LOG.exception('Exception during message handling')
+ LOG.exception(_('Exception during message handling'))
ctxt.reply(None, sys.exc_info(),
connection_pool=self.connection_pool)