summaryrefslogtreecommitdiff
path: root/heat/common/serializers.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/common/serializers.py')
-rw-r--r--heat/common/serializers.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/heat/common/serializers.py b/heat/common/serializers.py
index 836c6f7be..3125ba98b 100644
--- a/heat/common/serializers.py
+++ b/heat/common/serializers.py
@@ -37,7 +37,11 @@ class JSONResponseSerializer(object):
return six.text_type(obj)
response = jsonutils.dumps(data, default=sanitizer)
- LOG.debug("JSON response : %s" % response)
+
+ # TODO(ricolin): Fix response through private credential information,
+ # before enable below debug message.
+ # LOG.debug("JSON response : %s" % response)
+
return response
def default(self, response, result):