Merge "Stop showing json deserialized message in log" into stable/newton

This commit is contained in:
Jenkins 2017-04-07 05:54:42 +00:00 committed by Gerrit Code Review
commit d9979236d9
1 changed files with 5 additions and 1 deletions

View File

@ -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):