Re: Exception Logging

2007-10-14 Thread Richard Sayre
Thank you. That worked perfect. On 10/13/07, Jeromy Evans <[EMAIL PROTECTED]> wrote: > In addition to configuring log4j to use a FileAppender to write logs to > a file, here's a very simple way to log exceptions manually from the > exception page: > > Within your jsp include the following code: >

Re: Exception Logging

2007-10-13 Thread Jeromy Evans
In addition to configuring log4j to use a FileAppender to write logs to a file, here's a very simple way to log exceptions manually from the exception page: Within your jsp include the following code: <% String stackTrace = (String) pageContext.getAttribute("stackTrace"); new

Re: Exception Logging

2007-10-13 Thread Richard Sayre
I thought I would add this part of the stack trace in case it helps: SEVERE: Error finishing response java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at org.apache.coyote.http11.InternalOutputBuffer.write(InternalOutputBuffer.java:689)