aboutsummaryrefslogtreecommitdiffstats
path: root/nfvbench/chain_runner.py
diff options
context:
space:
mode:
authorfmenguy <francoisregis.menguy@orange.com>2021-02-01 16:12:59 +0100
committerFran�ois-R�gis Menguy <francoisregis.menguy@orange.com>2021-03-04 15:16:40 +0000
commit1c686977d9146f1b2dbbf0085c98897311c46789 (patch)
tree4666c3eacf4eb03487d9ec02360cf6fefc70725c /nfvbench/chain_runner.py
parent9f451d6e57d8aab489ee33123abca70300cc268b (diff)
NFVBENCH-200 Cleanup refactoring
Change-Id: I380a9efecdce8d525a9ae41949828c73e9cdac5f Signed-off-by: fmenguy <francoisregis.menguy@orange.com>
Diffstat (limited to 'nfvbench/chain_runner.py')
-rw-r--r--nfvbench/chain_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nfvbench/chain_runner.py b/nfvbench/chain_runner.py
index 7b1153f..7bb3bbc 100644
--- a/nfvbench/chain_runner.py
+++ b/nfvbench/chain_runner.py
@@ -210,8 +210,8 @@ class ChainRunner(object):
LOG.info('Clean up skipped.')
try:
self.traffic_client.close()
- except Exception:
- LOG.exception()
+ except Exception as exc:
+ LOG.exception(exc)
if self.stats_manager:
self.stats_manager.close()
except Exception: