From 9faa7fa60eeb84a5432577fa5cb16b028ebebc0a Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Wed, 8 Jan 2020 14:39:51 -0600 Subject: [PATCH] Added debug logging for DeployerPartitionHandler --- .../cloud/task/batch/partition/DeployerPartitionHandler.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spring-cloud-task-batch/src/main/java/org/springframework/cloud/task/batch/partition/DeployerPartitionHandler.java b/spring-cloud-task-batch/src/main/java/org/springframework/cloud/task/batch/partition/DeployerPartitionHandler.java index bd38c1a7..33e5479f 100644 --- a/spring-cloud-task-batch/src/main/java/org/springframework/cloud/task/batch/partition/DeployerPartitionHandler.java +++ b/spring-cloud-task-batch/src/main/java/org/springframework/cloud/task/batch/partition/DeployerPartitionHandler.java @@ -386,6 +386,11 @@ public class DeployerPartitionHandler AppDeploymentRequest request = new AppDeploymentRequest(definition, this.resource, this.deploymentProperties, arguments); + if (logger.isDebugEnabled()) { + logger.debug( + "Requesting the launch of the following application: " + request); + } + String externalExecutionId = this.taskLauncher.launch(request); if (this.taskRepository != null) {