diff options
author | Moshe <moshehoa@amdocs.com> | 2019-02-12 11:30:15 +0200 |
---|---|---|
committer | Moshe <moshehoa@amdocs.com> | 2019-02-12 11:30:28 +0200 |
commit | e10a5af4bb80d0a9ad4b0bd56959091ba5ff4a9a (patch) | |
tree | bff701f34ade6eb6cd6d0a7756910e7b2a7ff404 /vnftest/common | |
parent | 7e107fbf7941e7543948e9a222767a9b8d02b1f7 (diff) |
fix error logging to include message
Issue-ID: VNFSDK-350
Change-Id: Ib04465302a4f1546abd7209765a485c8721c1b1b
Signed-off-by: Moshe <moshehoa@amdocs.com>
Diffstat (limited to 'vnftest/common')
-rw-r--r-- | vnftest/common/openstack_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnftest/common/openstack_utils.py b/vnftest/common/openstack_utils.py index c8842d8..1bbdc43 100644 --- a/vnftest/common/openstack_utils.py +++ b/vnftest/common/openstack_utils.py @@ -800,7 +800,7 @@ def get_stack_resources(heat_stack_id): # pragma: no cover client = get_heat_client() return client.resources.list(heat_stack_id) except Exception as e: - log.exception("Error [get_stack_resources(heat_stack_id)]", e) + log.exception("Error [get_stack_resources(heat_stack_id)]: %s", e) def get_stack_vms(heat_stack_id): # pragma: no cover |