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 11:31:25 +0200
commit5dea7e63a012cdbf4fba60e4fdcb5c6acce2fca4 (patch)
tree69cff344eaedc4c2779270c48610d8579f6e45f1 /resources
parentaa69c5cf674ae8bfbfd69aae9358f617c53a1fc5 (diff)
Add testbed info to output_info.xml
- Needed for trending Change-Id: I59fc115ce62d1ad839e7c8a39c74af0497b9012d Signed-off-by: Tibor Frank <tifrank@cisco.com>
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):