diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-04-26 16:01:53 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-04-26 16:01:53 +0000 |
| commit | d4cd9832b57a28a3a11926b93ce2f6b9e41103c0 (patch) | |
| tree | dc6ed2c995c46e8e920fabb20a8cb1ad4db860bb /nova | |
| parent | 8a8f0712af9d8b86a5fbc9c12cbf8d661a1e58b8 (diff) | |
| parent | b00acbbe6556d29813cb8e98f826a04fad648c71 (diff) | |
Merge "Include instance in log message."
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/openstack/compute/contrib/multinic.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/api/openstack/compute/contrib/multinic.py b/nova/api/openstack/compute/contrib/multinic.py index 74f3d3bf2..02e87edf2 100644 --- a/nova/api/openstack/compute/contrib/multinic.py +++ b/nova/api/openstack/compute/contrib/multinic.py @@ -74,7 +74,8 @@ class MultinicController(wsgi.Controller): try: self.compute_api.remove_fixed_ip(context, instance, address) except exception.FixedIpNotFoundForSpecificInstance: - LOG.exception(_("Unable to find address %r") % address) + LOG.exception(_("Unable to find address %r") % address, + instance=instance) raise exc.HTTPBadRequest() return webob.Response(status_int=202) |
