Hi, <br><br>I´m an habitual user of log4j and I´m trying to port my application to logback. The first impression of this new tool was very good; the pluggin for Eclipse IDE has a good apparience. But I´m experiencing a little worrisomely problem: some logging lines cause the Eclipse plugin stops to write the rest of logging lines. If I activate a ConsoleAppender, I can view the rest of the logging lines at the standard console, but the Eclipse plugins don´t show that lines. 
<br><br>The line causing the Eclipse plugin stops to work is: <br><br>&nbsp;&nbsp;&nbsp;&nbsp; Method[] methods = clazz.getDeclaredMethods();<br>&nbsp;&nbsp;&nbsp;&nbsp; log.debug(&quot;method: {}&quot;, methods[i]);<br><br>I´ve seen an error on the Error Log eclipse´s view saying that 
java.lang.reflect.Method is not Serializable, and the plugin do not show the rest of the logging lines. <br><br>I´ve experimented similar error when I try to log a message line that contains an own object such as a bean. In this case, the error is a ClassNotFoundError because of the logback eclipse plugin can´t find the bean class. 
<br><br>Do you think these are two bugs of the plugin? How do you think I can solve that problems?<br><br><br>