Description
When logging asynchronously, Message::getFormattedMessage is called to give Message implementations a chance to take a snapshot of mutable objects before the message is passed to another thread. (See LOG4J2-763, LOG4J2-1718. Exceptions are Messages implementing ReusableMessage or AsynchronouslyFormattable.)
Some Messages implement StringBuilderFormattable to avoid creating temporary objects in the Layout.
The StringBuilderFormattable::formatTo(StringBuilder) method should be implemented such that it first checks if a cached formatted message string exists. If so, this string should be appended to the StringBuilder. If no cached message string exists logging is done synchronously and the formatted message can safely be created afresh.
This bug exists in:
- ObjectMessage
- SimpleMessage