From: Ross Brattain Date: Tue, 26 Sep 2017 05:23:36 +0000 (-0700) Subject: task: fixup s/exe_info/exc_info X-Git-Tag: opnfv-6.0.0~428 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=9ea225f671b774c6e373dbaab146d68cac16194e;p=yardstick.git task: fixup s/exe_info/exc_info JIRA: YARDSTICK-785 Change-Id: Ib37498e8df6a520f1d03256b73346fcedab3a177 Signed-off-by: Ross Brattain --- 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)