From 1c686977d9146f1b2dbbf0085c98897311c46789 Mon Sep 17 00:00:00 2001 From: fmenguy Date: Mon, 1 Feb 2021 16:12:59 +0100 Subject: NFVBENCH-200 Cleanup refactoring Change-Id: I380a9efecdce8d525a9ae41949828c73e9cdac5f Signed-off-by: fmenguy --- nfvbench/chain_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nfvbench/chain_runner.py') 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: -- cgit 1.2.3-korg