diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-14 19:33:01 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-14 19:34:33 +0200 |
commit | 526c0d5fc77d996b255533b21da4581622568254 (patch) | |
tree | 85d262d06e8a46c83f1140dc0386749d443c62a5 | |
parent | 2da803403ecd829eeeaa787155972e956027b318 (diff) |
Print the stack traceback when cleaning juju_epc
Change-Id: If32557a4384cafd67b7c294f8c0592ee2769b1a5
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit b2b1be21af5de2dd88092be268ae5f817608ecd1)
-rw-r--r-- | functest/opnfv_tests/vnf/epc/juju_epc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/functest/opnfv_tests/vnf/epc/juju_epc.py b/functest/opnfv_tests/vnf/epc/juju_epc.py index 0b6a5f6e1..75d46e60b 100644 --- a/functest/opnfv_tests/vnf/epc/juju_epc.py +++ b/functest/opnfv_tests/vnf/epc/juju_epc.py @@ -414,8 +414,7 @@ class JujuEpc(vnf.VnfOnBoarding): output = subprocess.check_output(cmd, stderr=subprocess.STDOUT) self.__logger.info("%s\n%s", " ".join(cmd), output) except Exception: # pylint: disable=broad-except - self.__logger.warn("Some issue during the undeployment ..") - self.__logger.warn("Tenant clean continue ..") + self.__logger.exception("Some issue during the undeployment ..") if not self.orchestrator['requirements']['preserve_setup']: self.__logger.info('Remove the Abot_epc OS object ..') |