diff options
Diffstat (limited to 'resources/libraries/python/SetupFramework.py')
-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): |