summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Walker (Daviey) <DaveWalker@ubuntu.com>2011-05-23 22:15:41 +0100
committerDave Walker (Daviey) <DaveWalker@ubuntu.com>2011-05-23 22:15:41 +0100
commit107eedf06ba6d27e65169302bd51a391e6e104f7 (patch)
tree115dee7f6d9634832b340046779cdb456ff0e535
parent63dbfeb2cb5b834a0cb4dd23c30522f540ac539b (diff)
downloadnova-107eedf06ba6d27e65169302bd51a391e6e104f7.tar.gz
nova-107eedf06ba6d27e65169302bd51a391e6e104f7.tar.xz
nova-107eedf06ba6d27e65169302bd51a391e6e104f7.zip
Changed ec2 api dupe key exception log handler info->debug
-rw-r--r--nova/api/ec2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py
index 4686c32ec..c13993dd3 100644
--- a/nova/api/ec2/__init__.py
+++ b/nova/api/ec2/__init__.py
@@ -339,7 +339,7 @@ class Executor(wsgi.Application):
return self._error(req, context, type(ex).__name__,
unicode(ex))
except exception.KeyPairExists as ex:
- LOG.info(_('KeyPairExists raised: %s'), unicode(ex),
+ LOG.debug(_('KeyPairExists raised: %s'), unicode(ex),
context=context)
return self._error(req, context, type(ex).__name__, unicode(ex))
except Exception as ex: