Description
Fix for logging encoding made for CXF-7033 introduced following code into AbstractLoggingInterceptor:
StaxUtils.copy(new StreamSource(new InputStreamReader(in, encoding)), xwriter);
The problem is that in case if encoding=null (it is often the case in outbound chain), the InputStreamReader throws NLP preventing write message body into the log file.