diff options
| author | Tushar Patil <tushar.vitthal.patil@gmail.com> | 2011-01-20 17:29:17 -0800 |
|---|---|---|
| committer | Tushar Patil <tushar.vitthal.patil@gmail.com> | 2011-01-20 17:29:17 -0800 |
| commit | 14f01f5daeca8cac9d669c584348712c2e893bc1 (patch) | |
| tree | 7844c27b29806626fef43a17dfc27b6472ee93d3 /nova | |
| parent | edceeb76885a246191315c6a6c76a7e4e89511e5 (diff) | |
| download | nova-14f01f5daeca8cac9d669c584348712c2e893bc1.tar.gz nova-14f01f5daeca8cac9d669c584348712c2e893bc1.tar.xz nova-14f01f5daeca8cac9d669c584348712c2e893bc1.zip | |
Reverted log type from error to audit
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/ec2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py index f251c8d41..3656bb44b 100644 --- a/nova/api/ec2/__init__.py +++ b/nova/api/ec2/__init__.py @@ -168,7 +168,7 @@ class Authenticate(wsgi.Middleware): req.path) # Be explicit for what exceptions are 403, the rest bubble as 500 except (exception.NotFound, exception.NotAuthorized) as ex: - LOG.error(_("Authentication Failure: %s"), ex.args[0]) + LOG.audit(_("Authentication Failure: %s"), ex.args[0]) raise webob.exc.HTTPForbidden() # Authenticated! |
