aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2018-03-29 22:52:54 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-03-29 22:52:54 +0000
commitf19016b39b828f648a66adc305cce17f5146e922 (patch)
tree33f22e06759a8d748078e75c90ffe27003ae137c
parent0cfb413451484e311ad5d3e956f3bb9c52f6978e (diff)
parent0a7f7b98a6a93a02d4949974d01610081720cc87 (diff)
Merge "don't print exceptions in atexit handler"
-rwxr-xr-xyardstick/benchmark/runners/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/runners/base.py b/yardstick/benchmark/runners/base.py
index 99386a440..fbdf6c281 100755
--- a/yardstick/benchmark/runners/base.py
+++ b/yardstick/benchmark/runners/base.py
@@ -121,7 +121,7 @@ class Runner(object):
@staticmethod
def terminate_all():
"""Terminate all runners (subprocesses)"""
- log.debug("Terminating all runners", exc_info=True)
+ log.debug("Terminating all runners")
# release dumper process as some errors before any runner is created
if not Runner.runners: