This may sounds like a silly question, but I can't find the answer and it's really bothering me. I'm using logback for logging and I'm currently working with some soap requests using spring ws. What I want is to log whole soap request as a nicely formatted xml in console (multiple rows). I've added logger for "org.springframework.ws" with "trace" level and what I got is exactly one line per each request.
My logback.xml:
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="error">
<appender-ref ref="STDOUT" />
</root>
<logger name="org.springframework.ws" level="trace" />
</configuration>
How to enable this feature?