summaryrefslogtreecommitdiffstats
path: root/ms/command-executor
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-07-08 15:15:39 +0000
committerGerrit Code Review <gerrit@onap.org>2019-07-08 15:15:39 +0000
commit16097828f299112bf0269e554a1dff37666f59be (patch)
tree7b225de66afd4ef502e94d5ffab4d723286c59b5 /ms/command-executor
parentac2e1c15bf01666c37f6fd49ea5461d7e3089075 (diff)
parent3a0b7d65f4869f92c2f49e4e0c4678f242320b2f (diff)
Merge "Do not dump a collection of outputs at the end."
Diffstat (limited to 'ms/command-executor')
-rw-r--r--ms/command-executor/src/main/python/command_executor_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/command-executor/src/main/python/command_executor_server.py b/ms/command-executor/src/main/python/command_executor_server.py
index 3596a0ec5..6266141d9 100644
--- a/ms/command-executor/src/main/python/command_executor_server.py
+++ b/ms/command-executor/src/main/python/command_executor_server.py
@@ -53,5 +53,5 @@ class CommandExecutorServer(CommandExecutor_pb2_grpc.CommandExecutorServiceServi
if not handler.execute_command(request, results):
self.logger.info("{} - Failed to executeCommand. {}".format(blueprint_id, results))
return utils.build_response(request, results, False)
- self.logger.info("{} - Execute command logs: {}".format(blueprint_id, results))
+ self.logger.info("{} - Execution finished successfully.".format(blueprint_id))
return utils.build_response(request, results)