summaryrefslogtreecommitdiff
path: root/nova/api/ec2/apirequest.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/api/ec2/apirequest.py')
-rw-r--r--nova/api/ec2/apirequest.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/nova/api/ec2/apirequest.py b/nova/api/ec2/apirequest.py
index 9a3e559257..803413898c 100644
--- a/nova/api/ec2/apirequest.py
+++ b/nova/api/ec2/apirequest.py
@@ -96,7 +96,13 @@ class APIRequest(object):
response = xml.toxml()
xml.unlink()
- LOG.debug(response)
+
+ # Don't write private key to log
+ if self.action != "CreateKeyPair":
+ LOG.debug(response)
+ else:
+ LOG.debug("CreateKeyPair: Return Private Key")
+
return response
def _render_dict(self, xml, el, data):