Repository: syncope Updated Branches: refs/heads/2_0_X 7aeafedaf -> d862c40c1
Fix typo Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/cc046f11 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/cc046f11 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/cc046f11 Branch: refs/heads/2_0_X Commit: cc046f119f8229c2f1b1836b1dfbcacc32c75775 Parents: 7aeafed Author: Francesco Chicchiriccò <[email protected]> Authored: Mon Dec 4 08:25:06 2017 +0100 Committer: Francesco Chicchiriccò <[email protected]> Committed: Mon Dec 4 10:20:39 2017 +0100 ---------------------------------------------------------------------- .../syncope/core/workflow/flowable/FlowableDefinitionLoader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/cc046f11/core/workflow-flowable/src/main/java/org/apache/syncope/core/workflow/flowable/FlowableDefinitionLoader.java ---------------------------------------------------------------------- diff --git a/core/workflow-flowable/src/main/java/org/apache/syncope/core/workflow/flowable/FlowableDefinitionLoader.java b/core/workflow-flowable/src/main/java/org/apache/syncope/core/workflow/flowable/FlowableDefinitionLoader.java index c4232ff..09858bb 100644 --- a/core/workflow-flowable/src/main/java/org/apache/syncope/core/workflow/flowable/FlowableDefinitionLoader.java +++ b/core/workflow-flowable/src/main/java/org/apache/syncope/core/workflow/flowable/FlowableDefinitionLoader.java @@ -66,7 +66,7 @@ public class FlowableDefinitionLoader implements SyncopeLoader { List<ProcessDefinition> processes = entry.getValue().getRepositoryService(). createProcessDefinitionQuery().processDefinitionKey(FlowableUserWorkflowAdapter.WF_PROCESS_ID). list(); - LOG.debug(FlowableUserWorkflowAdapter.WF_PROCESS_ID + " Activiti processes in repository: {}", processes); + LOG.debug(FlowableUserWorkflowAdapter.WF_PROCESS_ID + " Flowable processes in repository: {}", processes); // Only loads process definition from file if not found in repository if (processes.isEmpty()) { @@ -79,7 +79,7 @@ public class FlowableDefinitionLoader implements SyncopeLoader { FlowableDeployUtils.deployModel(entry.getValue(), procDef); - LOG.debug("Activiti Workflow definition loaded for domain {}", entry.getKey()); + LOG.debug("Flowable Workflow definition loaded for domain {}", entry.getKey()); } // jump to the next ID block
