diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-05-18 09:54:32 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-05-18 09:54:32 +0000 |
| commit | e24a21b6aa4668d526d0a177721eaa6369f7af45 (patch) | |
| tree | e792bbc863850ca83167b29038cfb78dcfd71734 /nova/api | |
| parent | ad90907fb6bdbe10456e8e3e7fc462f0e661783c (diff) | |
| parent | dc887267572c821ce97bec9536a699b72bdae443 (diff) | |
Merge "Don't raise unnecessary stack traces in EC2 API"
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/ec2/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py index b72c7d3a8..dfe015456 100644 --- a/nova/api/ec2/__init__.py +++ b/nova/api/ec2/__init__.py @@ -505,8 +505,6 @@ class Executor(wsgi.Application): LOG.info(_('NotFound raised: %s'), unicode(ex), context=context) return ec2_error(req, request_id, type(ex).__name__, unicode(ex)) except exception.EC2APIError as ex: - LOG.exception(_('EC2APIError raised: %s'), unicode(ex), - context=context) if ex.code: return ec2_error(req, request_id, ex.code, unicode(ex)) else: |
