summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-04-07 05:54:42 +0000
committerGerrit Code Review <review@openstack.org>2017-04-07 05:54:42 +0000
commitd9979236d9082a64d6afa6b868467173f1bc7c28 (patch)
tree4bb31db7642a1ce8843a26a42a09537c313684ac
parente5cd34402572c73c701357deb2c69d72d589b781 (diff)
parent3a08c6d2e2ca9d57bf3016b509ab1f18a78b6dd9 (diff)
downloadheat-7.0.3.tar.gz
Merge "Stop showing json deserialized message in log" into stable/newton7.0.3
-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):