Description
I was looking to create a subclass of org.apache.cxf.interceptor.LoggingInInterceptor that doesn't add line breaks to the log event. It seems like the class is designed such that folks wishing to do things like this should just override the LoggingInInterceptor.formatLoggingMessage(LoggingMessage) method and build their log event text however they wish. Unfortunately, any custom version of this method isn't able to include the LoggingMessage.id field (like the default implementation does), as this field doesn't have a getter.