summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2011-08-12 01:21:47 -0700
committerVishvananda Ishaya <vishvananda@gmail.com>2011-08-12 01:21:47 -0700
commit7295b93192d2b151c108d7631c3b404ef65fdedf (patch)
tree8501f8cd4fb8ab3bd526a093390d27d464a715aa /nova/api
parente294303750f032f22dadaba7eb0c743effa8c3f5 (diff)
downloadnova-7295b93192d2b151c108d7631c3b404ef65fdedf.tar.gz
nova-7295b93192d2b151c108d7631c3b404ef65fdedf.tar.xz
nova-7295b93192d2b151c108d7631c3b404ef65fdedf.zip
remove extra log statements
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/ec2/__init__.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py
index a93285dba..1ae9a126a 100644
--- a/nova/api/ec2/__init__.py
+++ b/nova/api/ec2/__init__.py
@@ -240,7 +240,6 @@ class Requestify(wsgi.Middleware):
@webob.dec.wsgify(RequestClass=wsgi.Request)
def __call__(self, req):
- LOG.audit("in request", context=req.environ['nova.context'])
non_args = ['Action', 'Signature', 'AWSAccessKeyId', 'SignatureMethod',
'SignatureVersion', 'Version', 'Timestamp']
args = dict(req.params)
@@ -331,8 +330,6 @@ class Authorizer(wsgi.Middleware):
@webob.dec.wsgify(RequestClass=wsgi.Request)
def __call__(self, req):
context = req.environ['nova.context']
- LOG.warn(req.environ['nova.context'].__dict__)
- LOG.warn(req.environ['ec2.request'].__dict__)
controller = req.environ['ec2.request'].controller.__class__.__name__
action = req.environ['ec2.request'].action
allowed_roles = self.action_roles[controller].get(action, ['none'])