Merge "Removes logging of location uri" into stable/havana

This commit is contained in:
Jenkins 2014-02-11 19:49:57 +00:00 committed by Gerrit Code Review
commit edcbdf9fa1
1 changed files with 3 additions and 3 deletions

View File

@ -658,9 +658,9 @@ class ImageProxy(glance.domain.proxy.Image):
return data
except Exception as e:
LOG.warn(_('Get image %(id)s data from %(loc)s '
'failed: %(err)s.') % {'id': self.image.image_id,
'loc': loc, 'err': e})
LOG.warn(_('Get image %(id)s data failed: '
'%(err)s.') % {'id': self.image.image_id,
'err': e})
err = e
# tried all locations
LOG.error(_('Glance tried all locations to get data for image %s '