Avoid string concatenation in AbstractBundlePersistenceManager
--------------------------------------------------------------

                 Key: JCR-2214
                 URL: https://issues.apache.org/jira/browse/JCR-2214
             Project: Jackrabbit Content Repository
          Issue Type: Improvement
          Components: jackrabbit-core
            Reporter: Marcel Reutegger
            Priority: Minor


The following line:

        log.debug("stored bundle " + bundle.getId());

should be changed to:

        log.debug("stored bundle {}", bundle.getId());


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to