diff options
| author | Dave Walker (Daviey) <DaveWalker@ubuntu.com> | 2011-05-23 22:15:41 +0100 |
|---|---|---|
| committer | Dave Walker (Daviey) <DaveWalker@ubuntu.com> | 2011-05-23 22:15:41 +0100 |
| commit | 107eedf06ba6d27e65169302bd51a391e6e104f7 (patch) | |
| tree | 115dee7f6d9634832b340046779cdb456ff0e535 | |
| parent | 63dbfeb2cb5b834a0cb4dd23c30522f540ac539b (diff) | |
| download | nova-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__.py | 2 |
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: |
