diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-08-13 11:31:25 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-08-13 11:31:25 +0200 |
commit | 5dea7e63a012cdbf4fba60e4fdcb5c6acce2fca4 (patch) | |
tree | 69cff344eaedc4c2779270c48610d8579f6e45f1 /resources/libraries/python | |
parent | aa69c5cf674ae8bfbfd69aae9358f617c53a1fc5 (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/libraries/python')
-rw-r--r-- | resources/libraries/python/SetupFramework.py | 4 |
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): |