We are logging the application SOAP requests to the interfaces using the logback.xml configuration file. The SOAP requests are itself generated with the framework Apache CXF
CXF. The LoggingInInterceptor has a property on it to control the limit size of what it logs. You would need to set the limit in there.
You may set limit
LoggingInInterceptor lii = new LoggingInInterceptor(); lii.setLimit(limit);