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) {