1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 18:21:14 +00:00

Merge pull request #526 from bjackman/log-error-fix

Fix logging error when exception raised
This commit is contained in:
setrofim 2017-10-23 17:49:44 +01:00 committed by GitHub
commit 303679124c

View File

@ -159,9 +159,9 @@ def log_error(e, logger, critical=False):
:e: the error to log. should be an instance of ``Exception``
:logger: logger to be used.
:critical: if ``True``, this error will be logged at ``logging.CRITICAL``
:critical: if ``True``, this error will be logged at ``logging.CRITICAL``
level, otherwise it will be logged as ``logging.ERROR``.
"""
if critical:
log_func = logger.critical
@ -171,7 +171,7 @@ def log_error(e, logger, critical=False):
if isinstance(e, KeyboardInterrupt):
log_func('Got CTRL-C. Aborting.')
elif isinstance(e, WAError) or isinstance(e, DevlibError):
log_func(e)
log_func(str(e))
elif isinstance(e, subprocess.CalledProcessError):
tb = get_traceback()
log_func(tb)