Temporarily disable exception logging

We have encountered some weird errors when running tests for py34. The
LOG.exception() call is not working properly due to some unclear
reasons. This patch proposes a temporary patch to disable exception
logging. Will keep looking into the problem later.

Change-Id: I4c736d71272645c42b467fd7d8820e3c59c15118
This commit is contained in:
tengqm 2015-10-08 08:54:40 -04:00
parent 49d2a074e4
commit c111473986

View File

@ -64,7 +64,7 @@ def parse_exception(ex):
elif isinstance(ex, Exception):
message = six.text_type(ex)
LOG.exception(ex)
# LOG.exception(ex)
raise senlin_exc.InternalError(code=code, message=message)