aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-08-13 11:31:25 +0200
committerTibor Frank <tifrank@cisco.com>2019-08-13 10:22:11 +0000
commitbbeeb28154507665185ce69c62d01dc551128ac9 (patch)
treedb1f531f6b1da0cf6f213ce9782ce977b3eac5bc /resources
parentf9a4ba4ae76c747632f41bb4971be96395c52d23 (diff)
Add testbed info to output_info.xml
- Needed for trending Change-Id: I59fc115ce62d1ad839e7c8a39c74af0497b9012d Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 5dea7e63a012cdbf4fba60e4fdcb5c6acce2fca4)
Diffstat (limited to 'resources')
-rw-r--r--resources/libraries/python/SetupFramework.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py
index 28717dca6a..79443b9d43 100644
--- a/resources/libraries/python/SetupFramework.py
+++ b/resources/libraries/python/SetupFramework.py
@@ -143,7 +143,9 @@ def setup_node(node, tarball, remote_tarball, results=None):
node=host, err=exc))
result = False
else:
- logger.console('Setup of node {0} done.'.format(host))
+ logger.console('Setup of node {ip} done.'.format(ip=host))
+ logger.info('Setup of {type} node {ip} done.'.format(type=node['type'],
+ ip=host))
result = True
if isinstance(results, list):