From b1ad52f99cc7dfdb00eeab2952ce2d60671bf739 Mon Sep 17 00:00:00 2001 From: Konstantinos <kostas24061992@yahoo.com> Date: Mon, 9 Dec 2019 10:10:21 +0200 Subject: [PATCH] Fix logging typo. On branch dev_merge_middleware Changes to be committed: modified: src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java --- src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java b/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java index 7ae5cccf8..ba6dcf7d3 100644 --- a/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java +++ b/src/main/java/eu/hbp/mip/controllers/GalaxyAPI.java @@ -202,7 +202,7 @@ class GalaxyAPI { final WorkflowDetails workflowDetails = workflowsClient.showWorkflow(matchingWorkflow.getId()); for (Map.Entry<String, WorkflowInputDefinition> entry : workflowDetails.getInputs().entrySet()) { if(!(allJsonParams.containsKey(entry.getValue().getUuid()))) { - logger.warn("Find extra value with label:" + entry.getValue().getLabel() + "and uuid:" + entry.getValue().getUuid() + ", that is mandatory to run the workflow. The uuid will be automate add it with empty value in the parameters to run the workflow."); + logger.warn("Find extra value with label:" + entry.getValue().getLabel() + ", and uuid:" + entry.getValue().getUuid() + ", that is mandatory to run the workflow. The uuid will be automate add it with empty value in the parameters to run the workflow."); allJsonParams.put(entry.getValue().getUuid(), ""); } } -- GitLab