Hi,<br><br>I have a framework that utilizes logback-core for logging. Due to limitations in the software reading the log files, a new requirement is that long data should be split on multiple rows. I&#39;m trying to figure out if there a simple way of doing this?<br>
<br>More info: What I have is an extension of the PatternLayoutBase which adds the converters for my event class. I&#39;m using the standard RollingFileAppender. So, let&#39;s say I have a FooConverter, which gets the foo info from the event. But, when logging to the file, the foo info part must never be longer than x chars. If it is, it should be split on multiple rows. Other data (generated by other converters) should then be repeated.<br>
<br>Any suggestions o<span style="font-family: arial,helvetica,sans-serif;">n how to do this in a clean logback way is appreciated! What I&#39;m currently thinking is to loop on the converters (calling </span>PatternLayoutBase.writeLoopOnConverters multiple times), but I need to know when that&#39;s required... Anyone done something similar?<br>
<br>/Anders<br>