Text length limit in logback logging

前端 未结 2 570
不知归路
不知归路 2021-01-18 12:55

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

2条回答
  •  感动是毒
    2021-01-18 13:30

    You may set limit

    LoggingInInterceptor lii = new LoggingInInterceptor(); 
    lii.setLimit(limit);
    

提交回复
热议问题