summaryrefslogtreecommitdiffstats
path: root/ms/command-executor
diff options
context:
space:
mode:
authorOleg Mitsura <oleg.mitsura@amdocs.com>2019-06-28 15:42:54 -0400
committerOleg Mitsura <oleg.mitsura@amdocs.com>2019-06-28 15:42:54 -0400
commit3a0b7d65f4869f92c2f49e4e0c4678f242320b2f (patch)
tree259dfc1022fa8eff6f22a1e117307506d1a7bd77 /ms/command-executor
parenta6fae85764a8dfbeba6000a060b8be0f21fb0466 (diff)
Do not dump a collection of outputs at the end.
Issue-ID: CCSDK-1404 Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com> Change-Id: I50b5d0823b0ae10b87beaebd056d8f6148fcb6af
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)