summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-04-14 01:15:56 +0000
committerGerrit Code Review <review@openstack.org>2017-04-14 01:15:56 +0000
commit4da6f1a8f3f2c597031685e46f7eb7ada3c0a7ea (patch)
tree3960773cec1311a7c0e4e5e1b4faa426610f29f7
parent38e45c392579bcbff4bba8f779213faf5c5948f6 (diff)
parent63b812365ba7a3c8979e279fe3a8b5a766a34e19 (diff)
downloadheat-stable/mitaka.tar.gz
Merge "Stop showing json deserialized message in log" into stable/mitakamitaka-eol6.1.2stable/mitaka
-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):