diff options
-rw-r--r-- | yardstick/benchmark/core/task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py index 7e071bc0e..c175a950b 100644 --- a/yardstick/benchmark/core/task.py +++ b/yardstick/benchmark/core/task.py @@ -125,7 +125,7 @@ class Task(object): # pragma: no cover except KeyboardInterrupt: raise except Exception: - LOG.error('Testcase: "%s" FAILED!!!', case_name, exe_info=True) + LOG.error('Testcase: "%s" FAILED!!!', case_name, exc_info=True) testcases[case_name] = {'criteria': 'FAIL', 'tc_data': []} else: LOG.info('Testcase: "%s" SUCCESS!!!', case_name) |