Github user ilgrosso commented on a diff in the pull request:

    https://github.com/apache/syncope/pull/26#discussion_r69087269
  
    --- Diff: 
core/workflow-activiti/src/main/java/org/apache/syncope/core/workflow/activiti/ActivitiUserWorkflowAdapter.java
 ---
    @@ -348,8 +348,15 @@ protected void saveForFormSubmit(final User user, 
final String password, final P
         public WorkflowResult<String> doRequestCertify(final User user) {
             LOG.debug("Executing request-certify");
             Set<String> performedTasks = doExecuteTask(user, 
"request-certify", null);
    -        LOG.debug(performedTasks.iterator().next());
    +        LOG.debug("request-certify 
TaskID:"+performedTasks.iterator().next());
    --- End diff --
    
    Please rewrite such statement as
    ```java
    LOG.debug("request-certify TaskID: {}, performedTasks.iterator().next());
    ```
    
    More at http://www.slf4j.org/faq.html#logging_performance


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to