Hi all I am trying to get syslog-ng to log a java stack trace such as one shown below. PST:2005-03-15/10:46:49.657 [ExecuteThread: '23' for queue: 'weblogic.kernel.Default'] LOGERROR jwsm.com.cucbc.taglib.content.IncludeTagContent -- ServletExce ption on include tag javax.servlet.ServletException: Got error: 404 at com.cucbc.servlet.SimpleMDRequestDispatcher.handleError(SimpleMDRequestD ispatcher.java:72) at com.cucbc.servlet.AbstractMDRequestDispatcher.checkForError(AbstractMDRe questDispatcher.java:87) at com.cucbc.servlet.AbstractMDRequestDispatcher.include(AbstractMDRequestD ispatcher.java:71) at com.cucbc.taglib.content.IncludeTagContent.write(IncludeTag.java:137) at com.cucbc.taglib.content.ContentTagSupport.doEndTag(ContentTagSupport.ja va:52) at jsp_servlet._personal.__index._jspService(index.jsp:63) at weblogic.servlet.jsp.JspBase.service(JspBase.java:33) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Se rvletStubImpl.java:996) etc... I have a filter match "LOGERROR" configured for syslog-ng. It matches fine and logs the line: PST:2005-03-15/10:46:49.657 [ExecuteThread: '23' for queue: 'weblogic.kernel.Default'] LOGERROR jwsm.com.cucbc.taglib.content.IncludeTagContent -- ServletExce ption on include tag However, the stack trace after that is ignored.... Any way to get that? I guess a regexp match on LOGERROR is out of the question... Thanks