-
Type: Improvement
-
Resolution: Fixed
-
Priority: Minor - P4
-
None
-
Affects Version/s: 1.3.0
-
Component/s: Sink
-
None
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.