On Thu, Dec 6, 2012 at 10:02 AM, Duarte Silva <span dir="ltr"><<a href="mailto:duarte.silva@serializing.me" target="_blank">duarte.silva@serializing.me</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Hi,<br>
<br>
I have searched for this problem but haven't been successful in my quest for a<br>
solution. I have attached the configuration used as well as the result in the<br>
logcat output using logback and the Android Log. The logging call is the<br>
following (where LOGGER as been obtained by using the LoggerFactory and the<br>
configuration is in the application manifest):<br>
<br>
if (LOGGER.isWarnEnabled()) {<br>
    LOGGER.warn("Failed to use the mark/reset, will retrieve the data again",<br>
                    exception);<br>
}<br>
<br>
As you may notice the output is all crapped out. What am I doing wrong?<br>
<br>
Best regards,<br>
Duarte Silva<br></blockquote><div><br></div><div>Your <tagEncoder> pattern should append "%nopex" [1] to suppress the stack trace.</div><div><br></div><div>logback silently includes %xThrowable in your pattern at the end to display the stack trace when logging a throwable [2]. This probably does not make sense for the log tag, which is meant to be short. I've created an issue for this [3] and will fix it for the next release.</div>

<div><br></div><div>[1] <a href="http://logback.qos.ch/manual/layouts.html#nopex">http://logback.qos.ch/manual/layouts.html#nopex</a></div><div>[2] <a href="http://logback.qos.ch/manual/layouts.html#xThrowable">http://logback.qos.ch/manual/layouts.html#xThrowable</a></div>

<div>[3] <a href="https://github.com/tony19/logback-android/issues/33">https://github.com/tony19/logback-android/issues/33</a> </div></div>