Details
-
Improvement
-
Resolution: Fixed
-
Minor - P4
-
None
-
1.3.0
-
None
Description
I found the following logging issues:
- premature toString() invocation
LOGGER.debug(record.toString()); - string concatenation
LOGGER.debug("key: " + keyDoc.toString());
which may cause performance issues in high-load applications.
In particular, I encountered unnecessary pressure on GC due to the premature toString() invocation.